Commit a5c5ad57 by Jose Baez

Initial commit

parents
<!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>
<link rel="stylesheet" href="style.css">
</head>
<body>
<section class="container">
<div class="caja uno">
<img src="images/tarea12.jpg" alt="homero picture">
</div>
<div class="caja dos">
<img src="images/tarea12.jpg" alt="homero picture">
</div>
<div class="caja tres">
<img src="images/tarea12.jpg" alt="homero picture">
</div>
<div class="caja cuatro">
<img src="images/tarea12.jpg" alt="homero picture">
</div>
<div class="caja cinco">
<img src="images/tarea12.jpg" alt="homero picture">
</div>
</section>
</body>
</html>
\ No newline at end of file
.container{
margin: 50px auto;
width: 605px;
height: 605px;
background-color: blanchedalmond;
padding: 2px;
border-style: solid
}
.caja{
border-style: solid
}
.uno{
position: absolute;
}
.dos{
position: absolute;
margin: 100px 0px 100px 100px;
}
.tres{
position: absolute;
margin: 200px 0px 200px 200px;
}
.cuatro{
position: absolute;
margin: 300px 0px 300px 300px;
}
.cinco{
position: absolute;
margin: 400px 0px 400px 400px;
}
.caja:hover ~ div{
visibility: hidden;
}
.caja:hover {
border:5px solid white;
}
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment