|
|
|
ต้องการจะให้ตัวอักษรใน list menu มีขนาดเล็กลงจะมีวิธีแก้ไขยังไงค่ะ. .รบกวนแนะนำหน่อยนะค่ะ |
|
|
|
|
|
|
|
มันเล็กลงแต่ไม่สามารถแสดงข้อมูลในฐานข้อมูลได้ค่ะ
|
|
|
|
|
Date :
2013-01-06 18:48:14 |
By :
เมจิก |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ลองสร้างพวก style sheet แล้วเรียกเป็น class ดูครับ
|
|
|
|
|
Date :
2013-01-07 09:06:25 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
วิธีการสร้งนี้คือยังไงค่ะพี. .ทำไมเป็นอ่ะค่ะ
|
|
|
|
|
Date :
2013-01-07 18:24:50 |
By :
เมจิก |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
แบบนี้ใช่ไหมค่ะมันก็ยังไม่ได้อยู่ดีค่ะ. ..??
Code (PHP)
<label for="select" ></label>
<style>.font{font-size:2px}</style>
<select name="stype" >
<?
include "connet.php";
$sql="select * from product_type";
$result = $result=mysql_query($sql);
while ($rs=mysql_fetch_array($result)){
$typepro_id=$rs [typepro_id];
$type_name=$rs[type_name];
echo "<option value='$typepro_id'>$type_name</option>";
}
?>
</select>
|
|
|
|
|
Date :
2013-01-07 19:09:08 |
By :
เมจิก |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
<style>.font{font-size:2px}</style> //เอาไปไว้ใน <head></head>
<label for="select" ></label>
<select class="font">
<?
include "connet.php";
$sql="select * from product_type";
$result = $result=mysql_query($sql);
while ($rs=mysql_fetch_array($result)){
$typepro_id=$rs [typepro_id];
$type_name=$rs[type_name];
echo "<option value='$typepro_id'>$type_name</option>";
}
?>
</select>
//หรือ
<label for="select" ></label>
<select style="font-size:9px;>
<?
include "connet.php";
$sql="select * from product_type";
$result = $result=mysql_query($sql);
while ($rs=mysql_fetch_array($result)){
$typepro_id=$rs [typepro_id];
$type_name=$rs[type_name];
echo "<option value='$typepro_id'>$type_name</option>";
}
?>
</select>
|
ประวัติการแก้ไข 2013-01-12 14:07:32
|
|
|
|
Date :
2013-01-12 14:06:09 |
By :
Manussawin |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 00
|