como colocar una esquina redondeada para IE
Publicado por juan pablo (1 intervención) el 24/05/2010 04:15:01
este es el codigo para firefox ,safari y chrome. Pero me falta IE. como seria
<!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>documento sin título</title>
<style>
#contenedorr3 {
border-radius:3px;
-moz-border-radius:10px; /* firefox */
-webkit-border-radius:10px; /* safari y chrome */
/*estilos*/
border:1px solid #333;
background:#eee;
width:30%;
padding:5px;
}
</style>
</head>
<body>
<div id="contenedorr3">
<p>este es un contenedor con bonitos bordes redondeados de 3px</p>
</div>
</body>
<!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>documento sin título</title>
<style>
#contenedorr3 {
border-radius:3px;
-moz-border-radius:10px; /* firefox */
-webkit-border-radius:10px; /* safari y chrome */
/*estilos*/
border:1px solid #333;
background:#eee;
width:30%;
padding:5px;
}
</style>
</head>
<body>
<div id="contenedorr3">
<p>este es un contenedor con bonitos bordes redondeados de 3px</p>
</div>
</body>
Valora esta pregunta


0