[11]CSS Float


[11]CSS Float

HTML [11]CSS Float MrBini 2016. 4. 4. 17:32 이웃추가 본문 기타 기능 [01]CSS Float Float은 속성이 block으로 된 것을 대상으로 한다. <!DOCTYPE html> <html> <head> <style> .thumbnail { float: left; 왼쪽부터 채워지게 하겠다. width: 110px; height: 90px; margin: 5px; } </style> </head> <body> <h3>Image Gallery</h3> <p>Try to resize the browser-window to see what happens when the images do not have enough room.</p> <img class="thumbnail" src="klematis_small.jpg" width="107" height="90"> <img class="thumbnail" src="klematis2_small.jpg" wid...



원문링크 : [11]CSS Float