
problema con bordes
Publicado por jose maria (16 intervenciones) el 17/09/2014 19:42:52
hola, estoy intentando que mi parrafo subrayao tenga las cuatro esquinas redondeadas, estoy utilizando este codigo, y no se por que no me sale, gracias:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<html>
<head>
<title>
</title>
<style>
/* */
.cssButton{
text-decoration:none
border-radius: 5px ;
color: #ffffff; /* color blanco para la letra */
font-family: Arial, Helvetica, sans-serif;
text-align: center;
font-weight: bold;
font-size:14px; /* tamaño para el total del boton */
background:#9cd14b; /* color verde */
padding-top:4px;
padding-bottom:4px;
padding-left:5px;;
padding-right:5px;
cursor: pointer; /* cuando nos ponemos encima pone el puntero como una mano*/
width:10px;
background:#9cd14b;
}
</style>
</head>
<body >
<span class="cssButton " style="width: 80px;" >
hola »
</span>
</body>
</html>
Valora esta pregunta


-1