PHP - html2pdf se me va a la derecha

 
Vista:
sin imagen de perfil

html2pdf se me va a la derecha

Publicado por anonymous (10 intervenciones) el 26/04/2017 13:36:45
Hola, uso html2pdf para pasar mi documento a pdf, me iba bien pero al pasarlo a pdf se queda todo a la derecha y debería estar en el centro como la imagen, ya me cansado de probar y sigo sin saber porque queda así. ¿Ha alguien le paso? ¿Que podría ser?


Sin-ggggggg
Valora esta pregunta
Me gusta: Está pregunta es útil y esta claraNo me gusta: Está pregunta no esta clara o no es útil
0
Responder
Imágen de perfil de Lina
Val: 24
Ha aumentado su posición en 4 puestos en PHP (en relación al último mes)
Gráfica de PHP

html2pdf se me va a la derecha

Publicado por Lina (15 intervenciones) el 26/04/2017 14:59:06
Hola, porfa muestra un poco de tu codigo , ayudarte así a ciegas es muy dificil!.
Valora esta respuesta
Me gusta: Está respuesta es útil y esta claraNo me gusta: Está respuesta no esta clara o no es útil
0
Comentar
sin imagen de perfil

html2pdf se me va a la derecha

Publicado por anonymous (10 intervenciones) el 27/04/2017 08:34:33
Css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
#pagina{
		text-align:center;
		background:	 #CCCC99;
		color:#6B8E23;
		//font-family:futura-normal;	
	}
 
	#tabla3{
		text-align:left;
		width:78%;
		height:15%;
		border:solid grey;
	}
 
	#medida1{
		width:62%;
	}
 
	#medida2{
		width:38%;
	}
 
	#formulario{
		text-align:left;
		width:95%;
		height:100%;
		empty-cells: show;
		border-collapse: separate;
		border-spacing: 1px;
		margin-left: 0%;
		margin-right: auto;
	}
 
	#formulario2{
		text-align:left;
		width:100%;
		empty-cells: show;
		border-collapse: separate;
		border-spacing: 1px;
		margin-left: 5%;
		margin-right: auto;
	}
 
	.izquierda{
		background:white;
		padding:3px 0px 1px 3px;
	}
 
	.derecha{
		background:white;
		padding:3px 0px 1px 3px;
	}
 
	.centro{
		background:white;
		width:60%;
		padding:3px 0px 1px 3px;
	}
 
 
 
 
	.tabla {
        display: table;
		margin-right: auto;
		empty-cells: show;
		width:38%;
    }
 
    .Heading {
        display: table-row;
		background:white;
        text-align: left;
		margin:0px;
		padding:0px;
		line-height:0;
    }
 
    .Row{
        display: table-row;
		background:white;
		line-height:0;
    }
 
    .Cell {
        display: table-cell;
        border: solid LightGrey;
        border-width: thin;
        padding-left: 5px;
        padding-right: 5px;
		background:white;
    }
 
	.Row .Cell{
		border-bottom:none;
		border-top:none;
		background:white;
	}
 
 
	.texto-vertical{
		writing-mode: vertical-lr;
		transform: rotate(180deg);
		font-size:9px;
		margin-left: 10%;
		margin-top:13%;
		float:left;
	}
 
	#cantidad{
		background:white;
		width:8%;
		padding:0px 5px 0px 5px;
	}
 
	#concepto{
		background:white;
		width:52%;
		margin-left:5%;
		padding:0px 10px 0px 8px;
	}
 
	#pvp{
		background:white;
		width:10%;
		padding:0px 10px 0px 5px;
	}
 
	#importe{
		background:white;
		width:10%;
		padding:0px 8px 0px 8px;
	}
 
	#gracias{
		background:white;
		text-align:center;
		color:black;
		font-size:12px;
	}

El principio del html, es un poco mas largo
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<page id="pagina" backtop="1mm" backbottom="1mm" backleft="1mm" backright="1mm" backcolor="#CCCC99">
    <img class="imagen" alt="S"  src="css/web-s.png">
		<br><br><br><br><br>
		<nobreak>
		<table id="tabla3">
			<tr>
				<td id="medida1">
					<table id="formulario">
						<tr>
						  <td class="izquierda">Nombre:</td>
						</tr>
 
						<tr>
						  <td class="izquierda">Apellidos:</td>
						</tr>
 
						<tr>
						  <td class="izquierda">D.N.I/N.I.F.</td>
						</tr>
 
						<tr>
						  <td class="izquierda">Ciudad:</td>
						</tr>
 
					</table>
				</td>
 
				<td id="medida2">
 
					<table id="formulario2">
						<tr>
						  <td class="derecha">Factura n:</td>
						</tr>
 
						<tr>
						  <td class="derecha">Habitacion n:</td>
						</tr>
 
						<tr>
						  <td class="derecha">Entrada:</td>
						</tr>
 
						<tr>
						  <td class="derecha">Salida:</td>
						</tr>
 
					</table>
				</td>
			</tr>
		</table>
		</nobreak>
		<br>
		<div class="texto-vertical">N.I.F. 00 - S</div>
		<nobreak>
 
		<form>
			<div class="tabla">
 
				<div class="Heading">
 
					<div class="Cell" id="cantidad">
						<p>Cantidad</p>
					</div>
 
					<div class="Cell" id="concepto">
						<p>Concepto</p>
					</div>
 
					<div class="Cell" id="pvp">
						<p>PVP/Ud</p>
					</div>
 
					 <div class="Cell" id="importe">
						<p>Importe</p>
					</div>
 
				</div>
 
				<div class="Row">
 
					<div class="Cell">
						<p></p>
					</div>
 
					<div class="Cell">
						<p></p>
					</div>
 
					<div class="Cell">
						<p></p>
					</div>
 
					<div class="Cell">
						<p></p>
					</div>
 
				</div>
Valora esta respuesta
Me gusta: Está respuesta es útil y esta claraNo me gusta: Está respuesta no esta clara o no es útil
0
Comentar
sin imagen de perfil

html2pdf se me va a la derecha

Publicado por anonymous (10 intervenciones) el 27/04/2017 14:03:36
Ya encontré porque se me movía a la derecha(en el css puse text-align:center, lo quite y sale bien menos la imagen) pero aun así me sigue quedando el resto mal. Las tablas no salen como deberían y eso que puse todas table porque con div me salían peor aun ya que no coge el estilo.
Valora esta respuesta
Me gusta: Está respuesta es útil y esta claraNo me gusta: Está respuesta no esta clara o no es útil
0
Comentar