岛国毛片,97人妻一区二区精品视频,日韩人妻中文字幕一区二区三区,午夜黄片特黄

中山php|最優(yōu)網(wǎng)絡(luò)中山做網(wǎng)站 中山php建站

最優(yōu)良人

2011/08/18 at 14:42

按鈕變成失效狀態(tài),input框變成只讀模式以及CSS一些頁(yè)面控制

以下代碼可以使按鈕變成失效狀態(tài)
<input id="select-layout" type="button" value="布置圖管理" name="select-layout" disabled="disabled">

以下代碼可以使input框變成只讀且禁用模式
<input name="demo" type="text" disabled value="value" readonly="true" />

CSS控制字?jǐn)?shù)多,隱藏多余字
text-overflow:ellipsis;word-break:keep-all;overflow:hidden; white-space:nowrap;

顯示豎的滾動(dòng)條
overflow-y:auto;height:220px;

//表格不被撐開(kāi),換行
style="word-break:break-all"

控制input或者textarea背景透明的樣式
background-color: transparent;

實(shí)現(xiàn)細(xì)邊的表格
<table width=500 border="0" align="center" cellpadding="5" cellspacing="1" bgcolor="#add3ef">
<tr bgcolor="#eff3ff">
<td>標(biāo)題:用戶(hù):</td>
</tr>
<tr bgColor="#ffffff">
<td>內(nèi)容:</td>
</tr>
</table>
或者簡(jiǎn)單通過(guò)這個(gè)屬性控制
style="border-collapse:collapse"

標(biāo)簽:
-