Commit 94b4edd7 by roshka

CSS Clase 2

parents
a:hover{
background: #CC0000;
color: #FFF;
display:block;
margin: 10px;
width: 250px;
height: 20px;
}
body a{
color: #CC0000;
display:block;
margin: 10px;
width: 250px;
height: 20px;
}
a:visited{
color: #CCC;
display:block;
margin: 10px;
width: 300px;
height: 20px;
}
\ No newline at end of file
<!DOCTYPE html>
<html lang="es">
<head>
<title>Prueba 1</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="Ejercicio1.css" rel="stylesheet">
</head>
<body>
<a href="https://www.google.com">Enlace a google</a>
<a href="https://www.facebook.com">Enlace a facebook</a>
<a href="https://www.clasipar.com">Enlace a google</a>
</body>
</html>
\ No newline at end of file
section img{
margin: 5px;
padding: 2px;
border: 2px gray solid;
}
\ No newline at end of file
<!DOCTYPE html>
<html lang="es">
<head>
<title></title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="Ejercicio2.css" rel="stylesheet">
</head>
<body>
<section>
<img src="imagen.png" alt="Cuadro">
<img src="imagen.png" alt="Cuadro">
<img src="imagen.png" alt="Cuadro">
</section>
<section>
<img src="imagen.png" alt="Cuadro">
<img src="imagen.png" alt="Cuadro">
<img src="imagen.png" alt="Cuadro">
</section>
<section>
<img src="imagen.png" alt="Cuadro">
<img src="imagen.png" alt="Cuadro">
<img src="imagen.png" alt="Cuadro">
</section>
</body>
</html>
\ No newline at end of file
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:og="http://ogp.me/ns#" xmlns:fb="https://www.facebook.com/2008/fbml" xml:lang="es" lang="es"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Ejercicio 4 (Introducción a CSS)</title>
<h1 id="" class="title">
Ejercicio 4
</h1>
<p>Modificar el menú vertical sencillo para que muestre el siguiente comportamiento:</p>
<p>1) Los elementos deben mostrar una imagen de fondo (<code>flecha_inactiva.png</code>):</p>
<div class="figure" id="figure_15_13">
<img src="./index_files/f0916.gif" alt="Menú vertical con imagen de fondo">
<p class="caption"><strong>Figura 4.1</strong> Menú vertical con imagen de fondo</p>
</div>
<p>2) Cuando se pasa el ratón por encima de un elemento, se debe mostrar una imagen alternativa (<code>flecha_activa.png</code>):</p>
<div class="figure" id="figure_15_14">
<img src="./index_files/f0917.gif" alt="Menú vertical con imagen de fondo alternativa">
<p class="caption"><strong>Figura 4.2</strong> Menú vertical con imagen de fondo alternativa</p>
</div>
<p>3) El color de fondo del elemento también debe variar ligeramente y mostrar un color gris más oscuro (<code>#E4E4E4</code>) cuando se pasa el ratón por encima:</p>
<div class="figure" id="figure_15_15">
<img src="./index_files/f0918.gif" alt="Menú vertical con imagen de fondo y color alternativos">
<p class="caption"><strong>Figura 4.3</strong> Menú vertical con imagen de fondo y color alternativos</p>
</div>
<p>4) El comportamiento anterior se debe producir cuando el usuario pasa el ratón por encima de cualquier zona del elemento del menú, no solo cuando se pasa el ratón por encima del texto del elemento (este problema sólo sucede con Internet Explorer 6):</p>
<div class="figure" id="figure_15_16">
<img src="./index_files/f0919.gif" alt="Aspecto final del menú vertical avanzado creado con CSS">
<p class="caption"><strong>Figura</strong> Aspecto final del menú vertical avanzado creado con CSS</p>
</div>
</body></html>
\ No newline at end of file
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Ejercicio menu vertical avanzado</title>
<style type="text/css">
ul.menu {
width: 180px;
list-style: none;
margin: 0;
padding: 0;
border: 1px solid #7C7C7C;
}
ul.menu li {
border-bottom: 1px solid #7C7C7C;
border-top: 1px solid #FFF;
background: #F4F4F4;
}
ul.menu li:hover {
border-bottom: 1px solid #7C7C7C;
border-top: 1px solid #FFF;
background: #E4E4E4;
}
ul.menu li a {
padding: .2em 0 .2em 1.3em;
display: block;
text-decoration: none;
color: #333;
}
.logo{
position: absolute;
background-image: url("flecha_inactiva.png");
height: 16px;
width: 16px;
}
ul.menu li:hover .logo{
position: absolute;
background-image: url("flecha_activa.png");
height: 16px;
width: 16px;
}
</style>
</head>
<body cz-shortcut-listen="true">
<ul class="menu">
<li>
<div class ="logo"></div>
<a href="#" title="Enlace generico">Elemento 1</a>
</li>
<li>
<div class ="logo"></div>
<a href="#" title="Enlace generico">Elemento 2</a>
</li>
<li>
<div class ="logo"></div>
<a href="#" title="Enlace generico">Elemento 3</a>
</li>
<li>
<div class = "logo"></div>
<a href="#" title="Enlace generico">Elemento 4</a>
</li>
<li>
<div class = "logo"></div>
<a href="#" title="Enlace generico">Elemento 5</a>
</li>
<li>
<div class = "logo"></div>
<a href="#" title="Enlace generico">Elemento 6</a>
</li>
</ul>
</body>
</html>
\ No newline at end of file
## Indicaciones
El número de la carpeta corresponde al número del ejercicio
\ 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