我在 div 中的表格有这个问题。我创建了两张桌子,目标是让它们彼此相邻。它以一个低于另一个而告终。尝试尽可能多地使用 CSS,但我对它没有那么丰富的经验。代码在这里:
#contactdetails_table{
width: 500px;
height: 190px;
/* border: solid #234b7c 3px; */
background-color: #FFC3CE;
border-radius: 15px;
direction: rtl;
float: left;
color: white;
font-size: large;
position: relative;
overflow: scroll;
}
这是第二个表的代码,它设法低于当前表:
<table style="position:relative; float:left;" cellpadding="10" cellspacing="10">
<tr>
<td>الايميل:</td>
<td><?php echo $profiledetails->email; ?></td>
</tr>
<tr>
<td>المدينة:</td>
<td><?php echo $profiledetails->city; ?></td>
</tr>
<tr>
<td>الهاتف:</td>
<td><?php echo $profiledetails->telephone; ?></td>
</tr>
<tr>
</tr>
</table>
感谢帮助 :)
注意:包括第一个表:
<div id="contactdetails_table">
<table cellpadding="10" cellspacing="10" >
<tr>
<td>الاسم الكامل:</td>
<td><?php echo $profiledetails->fullname; ?></td>
</tr>
<tr>
<td>اسم المستخدم:</td>
<td><?php echo $profiledetails->username; ?></td>
</tr>
<tr>
<td>الجوال:</td>
<td><?php echo $profiledetails->mobile; ?></td>
</tr>
<tr>
<td>العنوان:</td>
<td><?php echo $profiledetails->address; ?></td>
</tr>
</table>
<table style="position:relative; float:left;" cellpadding="10" cellspacing="10">
<tr>
<td>الايميل:</td>
<td><?php echo $profiledetails->email; ?></td>
</tr>
<tr>
<td>المدينة:</td>
<td><?php echo $profiledetails->city; ?></td>
</tr>
<tr>
<td>الهاتف:</td>
<td><?php echo $profiledetails->telephone; ?></td>
</tr>
<tr>
</tr>
</table>