Ver Mensaje Individual
  #2 (permalink)  
Antiguo 12/07/2015, 19:48
Avatar de xfxstudios
xfxstudios
 
Fecha de Ingreso: junio-2015
Ubicación: Valencia - Venezuela
Mensajes: 2.448
Antigüedad: 8 años, 10 meses
Puntos: 263
Respuesta: Problema DomPDF

este es el css que uso:
Código CSS:
Ver original
  1. html {
  2.     margin: 0;
  3. }
  4. body {
  5.     margin:30mm 8mm 40mm 8mm;
  6.     /*text-align:justify;*/
  7. }
  8. #casa {
  9.     color:#FF6700;
  10. }
  11. #cabecera,
  12. #footer {
  13.     position: fixed;
  14.     left:0;
  15.     right:0;
  16. }
  17.  
  18. #footer {
  19.   bottom:0;
  20.   height: 50px;
  21.   text-align: center;
  22.   background-color:#FF6700;
  23.   border-top: 2px solid #1773E1;
  24.   color:#FFFFFF;
  25. }
  26. #cabecera {
  27.   top:0;
  28.   height: 50px;
  29.   text-align: center;
  30.   background-color:#FF6700;
  31.   border-bottom-width: 2px;
  32.   border-bottom: solid;
  33.   border-bottom-color: #1773E1;
  34.   color:#FFFFFF;
  35. }
  36. .pagenum:before {
  37.   content: counter(page);
  38. }
  39. #mensaje {
  40.     padding:15px;
  41.     background-color:#F1F1F1;
  42.     border-top:solid;
  43.     border-top-color:#4072B5;
  44.     border-top-width:2px;
  45.     border-top-right-radius:25px;
  46.    
  47. }
  48. .box {
  49.   position: relative;
  50.   background: #F7F7F7;
  51.   border-top: 2px solid #c1c1c1;
  52.   margin-bottom: 20px;
  53.   -webkit-border-radius: 3px;
  54.   -moz-border-radius: 3px;
  55.   border-radius: 3px;
  56.   width: 100%;
  57.   box-shadow: 0px 1px 3px #171515;
  58.   padding:15px;
  59. }
  60. .box.box-info {
  61.   border-top-color: #00c0ef;
  62. }
  63. #titulos {
  64.     background-color:#00437B;
  65.     color:#FFFFFF;
  66. }
  67. hr {
  68.   page-break-after: always;
  69.   border: 0;
  70. }
  71. #cuadro {
  72.     width:10px;
  73.     height:10px;
  74.     border:solid;
  75.     border-width:2px;
  76. }
  77. #tabla {
  78.     table-layout:fixed;
  79. }