Ver Mensaje Individual
  #2 (permalink)  
Antiguo 05/03/2010, 20:08
Avatar de dual3nigma
dual3nigma
Colaborador
 
Fecha de Ingreso: febrero-2010
Ubicación: Ciudad de México
Mensajes: 295
Antigüedad: 14 años, 2 meses
Puntos: 122
Respuesta: li con css e imagen display inline

Código HTML:
Ver original
  1. <div id="ganadores-wrapper">
  2.  <div id="ganadores-encabezados">Ganadores de TRé-CH(É) Short Fest '09</div>
  3.    <div class="ganadores-carousel">
  4.         <ul>
  5.        
  6.             <li><a href="" target="_self"><img src="/images/imagen01.jpg" alt="Imagen 01" width="156px" /></a>
  7.             <p><strong>Película: </strong>Pelicula Numero 1 </p>
  8.             <p><strong>Categoría: </strong>Mejor Cortometraje Documental</p>
  9.             <p class="dotted"><strong>Director: </strong>Director Numero 1</p>
  10.             <p><strong>Lugar de origen: </strong>España</p>
  11.             <p><a href="#" target="_self">Leer Más</a></p>
  12.             </li>
  13.            
  14.             <li><a href="" target="_self"><img src="/images/imagen02.jpg" alt="Imagen 02" width="156px" /></a>
  15.             <p><strong>Película: </strong>Pelicula Numero 2</p>
  16.             <p><strong>Categoria: </strong>Mejor Cortometraje Documental</p>
  17.             <p class="dotted"><strong>Director: </strong>Director Numero 2</p>
  18.             <p><strong>Lugar de origen: </strong>USA</p>
  19.             <p><a href="#" target="_self">Leer Más</a></p>
  20.             </li>
  21.            
  22.             <li><a href="" target="_self"><img src="/images/imagen01.jpg" alt="Imagen 01" width="156px" /></a>
  23.             <p><strong>Película: </strong>Película Numero 3 </p>
  24.             <p><strong>Categoría: </strong>Mejor Cortometraje Documental</p>
  25.             <p class="dotted"><strong>Director: </strong>Director Numero 3</p>
  26.             <p><strong>Lugar de origen: </strong>México</p>
  27.             <p><a href="#" target="_self">Leer Más</a></p>
  28.             </li>
  29.         </ul>
  30.  
  31.     </div>
  32. </div>

Código CSS:
Ver original
  1. #ganadores-wrapper{
  2.     width: 100%;   
  3. }
  4.  
  5. .ganadores-carousel{
  6.     width:100%;
  7. }
  8.  
  9. .ganadores-carousel ul{
  10.     list-style:none;
  11.     padding:0;
  12.     margin:0;
  13. }
  14.  
  15. .ganadores-carousel li{
  16.     display:block;
  17.     width: 156px;
  18.     margin-right:15px;
  19.     float:left;
  20.  
  21. }
  22. .ganadores-carousel p{
  23.     color:#8E8F9B;
  24.     margin: 2px 0;
  25. }
  26.  
  27. .ganadores-carousel strong{
  28.     color:#BE691B;
  29. }
  30.  
  31. .ganadores-carousel a{
  32.     color:#C3843E;
  33. }
  34.  
  35. .ganadores-carousel li p.dotted{
  36.     border-top: 1px #686868 dotted;
  37.     padding: 5px 0;
  38.     margin: 5px 0;
  39. }