Hola
serra00
Esto te lo soluciona:
Código HTML:
<!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>Listado en cajas</title>
<style type="text/css">
#portalista {
width: 100%;
height: auto;
background-color: #000;
padding: 4px 0 4px 0;
}
.lista {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 12px;
border: 1px solid #444;
border-radius: 4px; /* sólo para ccs3 */
-moz-border-radius: 4px; /*sólo para firefox */
color: #bcbcbc;
margin: 6px;
padding: 2px;
background-color: #272727;
}
</style>
</head>
<body>
<div id="portalista">
<p class="lista">1 - Este es mi texto número 1</p>
<p class="lista">2 - Este es mi texto número 2</p>
<p class="lista">3 - Este es mi texto número 3</p>
</div>
</body>
</html>
Bye