관리 메뉴

커리까지

CSS 수업 - float 1 본문

CSS

CSS 수업 - float 1

목표는 커리 2021. 3. 26. 18:14
728x90
SMALL
  • 레이아웃 잡을때도 많이 사용한다.
  • 요즘은 flex로 많이 잡는다.
<!DOCTYPE html>
<html>
    <head>
        <style>
            img{
                width:300px;
                float: left;
                margin-right: 20px;
                margin-bottom: 10px;
            }
        </style>
    </head>
    <body>
        <img src="![20200116_002721](https://user-images.githubusercontent.com/52574837/112609600-0f9e4500-8e5f-11eb-9edd-340ffac0bf3b.jpg)" alt="">
        <p>
            펭하
        </p>
    </body>
</html> 

css39

<!DOCTYPE html>
<html>
    <head>
        <style>
            img{
                width:300px;
                float: left;
                margin-right: 20px;
                margin-bottom: 10px;
            }
            p{
                border:1px solid gray;
            }
        </style>
    </head>
    <body>
        <img src="![20200116_002721](https://user-images.githubusercontent.com/52574837/112609600-0f9e4500-8e5f-11eb-9edd-340ffac0bf3b.jpg)" alt="">
        <p>
            펭하
        </p>
        <p style="clear: both;">
            펭하
        </p>
    </body>
</html> 

css40

  • clear이랑 float랑 같아야지 적용된다. 일일이 확인하기 번거로워서 both를 사용한다.
728x90
LIST
Comments