我试图在我的页面中对齐一些不同的对象,但是发生了一些事情然后不正确。网络是下一个,我不想给广告只是给你和想法:
http://gocomunio.com/?journey=33
代码是下一个:
$v = 1;
$s = 1;
while( $equipo = mysql_fetch_assoc( $sele_equipo ) )
{
$sele_datjornada = "select * from jornada where jornada='$jornada' AND nom_equipo='{$equipo['nombre']}'";
$sele_datjornada = mysql_query( $sele_datjornada , $link );
$totEmp = mysql_num_rows( $sele_datjornada );
if( $totEmp > 0 )
{
switch( $v )
{
case 1:
echo "<TABLE CLASS='puntos_izquierda'>";
break;
case 2:
echo "<TABLE CLASS='puntos_derecha'>";
break;
case 3:
echo "<TABLE CLASS='puntos_centro'>";
$v = 0;
break;
}
$v++;
我将它们对齐在右、左和中心,然后有 3 个箱子和一个柜台谁在提高。这是CSS代码:
.puntos_izquierda tr:nth-child(odd){
width: 100%;
background-color: #30601e;
color: white;
font-weight: bold;
}
.puntos_derecha tr:nth-child(odd){
width: 100%;
background-color: #30601e;
color: white;
font-weight: bold;
}
.puntos_centro tr:nth-child(odd){
width: 100%;
background-color: #30601e;
color: white;
font-weight: bold;
}
我需要一种方法来将它们全部对齐而不会出现错误,我也试图使边距顶部但是当我尝试表格变得无序时。
感谢您的帮助,谢谢转发。