Pesquisar neste blog

13/11/2022

Divs em HTML5

<!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>Div</title>
    <style>
        *{
            margin: 0;
            padding: 0;
        }

        #div1{
            background-color: red;
            width: 100px;
            height: 100px;
        }

        #div2{
            background-color: rgb(229, 255, 0);
            width: 100px;
            height: 100px;
            padding: 20px; /* Modifica apenas a distancia do texto para as bordas,
            aumenta o tamanho total da div */
            /*margin: 20px; /* Altera as instÂncias da div inteira */
        }
    </style>
</head>
<body>
    <div id="div1">Div 1</div>
    <div id="div2">Div 2</div>
</body>
</html>




Nenhum comentário: