Style basic
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<style>
/* #blue{
background: blue;
}
.div{
background: green;
border: solid 2px;
}
div{
background: red;
height: 500px;
width: 500px;
} */
*{
background: red;
height: 500px;
width: 500px;
}
</style>
</head>
<body>
<div >
</div>
<div id="blue">
</div>
<div class="div">
</div>
<span>
</span>
<input type="text">
</body>
</html>
Comments
Post a Comment