CSS HTML rollover effect

0

I'm trying to make a rollover effect in CSS could anyone tell me if it's possible with HTML and CSS in the way the codes are? the effect would just add a black border around each menu item. Thank you for your attention!

@charset "utf-8";
/* CSS Document */


#topo {
	background:url(../imagens/topo.png);	
	position:inherit;
	width:1024px;
	height:190px;
	border-bottom:none;
	margin:auto;

}

#logo {
	float:left;
	background:url(../imagens/logoc.png);
	position:relative;
	top:50px;
	left:230px;
	width:541px;
	height:133px;
}
	
#fundoinicial {
	background-image:url(../imagens/fundoof.png);
	width:1024px;
	height:1080px;
	margin:auto;
	
}

#menufundo {
	background:url(../imagens/menu.png);
	position:relative;
	width:1024px;
	height:30px;
	margin:auto;
}


#ul li a{
	font-family:Arial, Helvetica, sans-serif;
	display: inline;
	font-size:20px;
	line-height:0px;
	padding:10px;
    margin:5px 0 0 52px;
	color:#FFF;
	text-decoration:none;
	float:left;
	
	
	
}
<!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>Alfatec</title>

<link href="css/reset.css" rel="stylesheet" type="text/css" />
<link href="css/estilo.css" rel="stylesheet" type="text/css" />
<style type="text/css">
body {
	background-image: url(../PLANILHAS%20CAIO/projeto/imagens/fundo.jpg);
}
{
	
</style>
</head>


<body>

<div id="logo">
					</div>			<!--div final do logo-->
<div id="topo"></div>			<!--div final topo-->  
			
			 
        <div id="menufundo">
		
		
		<nav id="ul">
       		<ul>            
        		<li><a href="#">Página Inicial   </a></li> 
        		<li><a href="#">Quem Somos</a></li>
        		<li><a href="#">Áreas de Cobertura</a></li>
        		<li><a href="#">Serviços</a></li>
        		<li><a href="#">Fale Conosco</a></li>
    		</ul>
       </nav>
	                   
</div>                
			<div id ="fundoinicial"></div>	


	
                    
                    
          
                  	
                        
              			
                   
                        
</body>
</html>
    
asked by anonymous 23.05.2017 / 20:04

2 answers

0

Your code appears broken here, but I imagine you're wondering how to do hover effects.

It's simple, just change your CSS based on the :hover selector. In your case, I imagine you should want something like this:

#ul li a {
    /* seu código aqui */
    border: 1px solid black; /* Exemplo */
}
    
23.05.2017 / 20:12
0

I think you want a Hover effect, right? if yes, try

#menu ul li:hover{
   border: 1px solid black;
}
    
23.05.2017 / 20:12