프론트엔드/Html Css
[HTML] 이미지 표지 활성화(display)
softColors
2023. 8. 25. 00:18
반응형
이미지 표시 활성화 (display)
<!doctype html>
<html>
<style>
.img_inline { display: inline;}
.img_block { display: block;}
</style>
<img class = "img_inline" src = "test_image.jpg" width="200px" height="200px">
<img src = "test_image.jpg" width="200px" height="200px">
<br>
<img class = "img_block" src = "test_image.jpg" width="200px" height="200px">
<img src = "test_image.jpg" width="200px" height="200px">
</html>
반응형