culture [CSS] Cases en CSS

Statut
La discussion n'est pas ouverte à d'autres réponses

Petit-Chat

Super Géant
Salut les amis. J'ai oublié comment on fait de des cases en css. En gros je veux encadré mes liens:

HTML:
je sais pas comment le mettre :doh-454d:

CSS :
Code:
* {
	margin: 0;
	padding: 0;
	border: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}	

body{
	height:auto;
	min-height:400px;
	font: 12px arial, sans-serif;
	background: #ccc;
	color: black;
	text-shadow: 1px 1px 0 #B5B5B5;
}
#wpa{
	font: 30px calibri, sans-serif;
	background:#999999;
	padding-left:10px;
	border-bottom: 1px solid black;
}

#menu li a:hover{
	background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255,255,255,.1)), to(rgba(0,0,0,.1)));
	
}

nav{
	display: table;
	overflow: hidden;
	width:170px;
	background:#e5e5e5;
	border-right: 1px solid black;
	text-align:center;
}

#fin{
	text-shadow: 1px 1px 0 #B5B5B5;
	text-align:right;
	margin: auto;
	background: #999999;

	color: black;
	padding-right:5px;
}

Merci.
 
Dernière modification par un modérateur:
Hello :sourire-4e62:

Encadrer des liens ?
Code:
a {
border: 1px solid black;
}

Tout simplement :dontknow-102c:
 
Statut
La discussion n'est pas ouverte à d'autres réponses
Retour
Haut