|
|
|
ไม่อยากให้ตารางขยายออกต้องทำไงค่ะ พอ query ออกมา แล้วตารางมันขยายเท่ากับความยาวข้อความอะค่ะ ต้องทำยังไง |
|
|
|
|
|
|
|
ลองใช้ css ในการกำหนดขนาดตารางนะ
|
|
|
|
|
Date :
2009-12-29 00:10:53 |
By :
onedan |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอตอบบ้างนะครับ
ไม่แน่ใจว่าได้ไหม
<table style="width:50% ;"></table>
|
|
|
|
|
Date :
2009-12-29 00:26:00 |
By :
teerapuch |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ลองใส่ width="713" ใน <tr> ดูครับเผื่อได้
|
|
|
|
|
Date :
2009-12-29 00:53:48 |
By :
panyapol |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ไม่ได้เลยค่ะ ลองทุกวิธีที่แนะนำแล้ว TT
มีวิธีอื่นๆ ไหมค่ะ แล้ว css นี่มีตัวอย่างไหมค่ะ
|
|
|
|
|
Date :
2009-12-29 01:12:05 |
By :
elfying |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<td width="200" height="30" style="overflow:scroll;">
|
|
|
|
|
Date :
2010-01-09 19:16:55 |
By :
Moo+ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ถ้าข้อความพิมต่อเนื่องมีความกว้างกว่า td ที่กำหนด (พูดถึงความกว้างของ td น่ะครับ) ทำยังไงตารางก็จะขยายอยู่ดีครับ
วิธีแก้
วิธีที่1. ซ่อนข้อความที่เกินไปครับ ตารางจะได้ไม่ขยายตาม
Code (PHP)
<style>
#td1{
width:100px;
border:solid 1px red;
}
#div-text{
width:100%;
width:inherit !important; /* hack firefox , chrome ,safari*/
overflow:hidden
}
</style>
<table>
<tr>
<td id="td1">
<div id="div-text">fasdfasdasdfasdfaasdfadgfsdfsadfsdfasdfsdfasdfasdff</div>
</td>
</tr>
</table>
วิธีที่ 2 ใช้ wordwrap() ของ php ซึ่งวิธีนี้ผมไม่ค่อยได้ใช้แล้ว
http://php.net/manual/en/function.wordwrap.php
ส่วนวิธีที่ใช้ overflow:scroll ไม่แน่ใจครับว่าจะใช้ได้ผลกับ ie
|
|
|
|
|
Date :
2010-01-09 20:25:14 |
By :
xbeginner01 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ลองดูอันนี้นะครับ
http://www.tek-tips.com/faqs.cfm?fid=4499
|
|
|
|
|
Date :
2010-01-11 11:21:38 |
By :
ฝึกหัด |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เอาข้อความคลุมด้วย div ครับ
<div style="overflow: auto;">ข้อความที่ยาวๆ</div>
|
|
|
|
|
Date :
2010-01-11 12:36:21 |
By :
danya |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เขียน table fixขนาด ครอบ div ไว้ก่อนค่ะ แล้วค่อยเขียน table อีกรอบนึง
<table width ='200px'style='table-layout:fixed'>
<tr>
<td>
<div style="width:100%;height:100px;overflow:scroll;">
<table width ='500px'>
<tr>
<td>
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
</td>
</tr>
</table>
</div>
</td>
</tr>
</table>
ปล. หาอยู่นานเผื่อใครติดบ้าง อิอิ
|
|
|
|
|
Date :
2010-08-18 16:46:54 |
By :
pikaOil |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<textarea name="" cols="50" rows="5" disabled="disabled" ><?=$row['productetc']?></textarea>
|
|
|
|
|
Date :
2012-10-28 16:08:21 |
By :
asa |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|