Ver Mensaje Individual
  #3 (permalink)  
Antiguo 30/08/2013, 18:05
omarinfinito
 
Fecha de Ingreso: enero-2012
Ubicación: <?php echo"Los teques"; ?>/////estado miranda
Mensajes: 196
Antigüedad: 12 años, 3 meses
Puntos: 9
Respuesta: imagen y multiples checkbox

Usando el codigo de pzin, hize un "boceto"
Código HTML:
Ver original
  1. div.coche {
  2.   position: relative;
  3. }
  4.  
  5. #rueda1 {
  6.   position: absolute;
  7.   bottom:2px;
  8.   left: 9px;
  9. }
  10. #rueda2 {
  11.   position: absolute;
  12.   bottom:2px;
  13.   left: 75px;
  14. }
  15. #ventana {
  16.   position: absolute;
  17.   bottom:30px;
  18.   left: 50px;
  19. }
  20. #faro {
  21.   position: absolute;
  22.   bottom:20px;
  23.   left: 2px;
  24. }
  25.  
  26. <div class="coche">
  27.   <img src="https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcTuwwx3gTIUewZ4FATI7pATXEUEPp_FyFu7gG_P_URAaqvafs86BEmpiiok">
  28.   <input id="rueda1" type="checkbox">
  29.   <input id="rueda2" type="checkbox">
  30.   <input id="ventana" type="checkbox">
  31.   <input id="faro" type="checkbox">
  32. </div>