바이오 대표

[CSS] Block & Inline 특징 본문

Front_end

[CSS] Block & Inline 특징

바이오 대표 2021. 8. 13. 15:27

 

Block Inlines
Height & Width x
Margin, padding, border 

 

Block 예시) 

* Browser 이 자동으로 box(block)에 style(공백 포함) 을 준다 = user agent stylesheet

<!DOCTYPE html>  
<html lang="kr"> 
    <head>
        <title>HTML input Exercise</title>
        <style>
            html {
                background-color: tomato;
            }
            div {
                height: 150px;
                width: 150px;
                background-color: whitesmoke;
            }
        </style>
    </head>
    <body>
        <div></div>
    </body>
</html>