div内のテーブルにこの問題があります。私は 2 つのテーブルを作成しましたが、目標はそれらを隣り合わせにすることでした。それは結局、一方が他方の下になりました。できる限り 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;
}
これは、現在のテーブルを下回った 2 番目のテーブルのコードです。
<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>