Java script

[Java script] head visual width

EmilyP 2021. 4. 12. 16:35

head visual width.html
0.00MB

<!DOCTYPE html>

<html lang="en">

<head>

    <meta charset="UTF-8">

    <meta http-equiv="X-UA-Compatible" content="IE=edge">

    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <title>Document</title>

</head>

<style>

    .w100{width:100%}

    .w1200{width:1200pxmargin:0 auto;}

    body{

        background#eee;

    }

    #header_wrap {

        background#fff;

        height:100px;

    }

    #visual {

        height500px;

        margin-top30px;

        backgroundred;

 

    }

</style>

<body>

    <div id="wrap" class="w100">

        <div id="header_wrap" class="w100">

            <div id="header" class="w1200">

                

            </div>

        </div>

        <div id="visual_wrap" class="w100">

            <div id="visual" class="w1200">

                visual

                

            </div>

        </div>

    </div>

    

</body>

</html>

'Java script' 카테고리의 다른 글

[Java script] Test - 도넛 박스  (0) 2021.04.12
[Java script] display flex  (0) 2021.04.12
[Java Script] Layout popup  (0) 2021.04.12
[Java script] React html/CSS  (0) 2021.04.12
[Java Script] Navigation  (0) 2021.04.12