
表單輸入格的背景色 ?
<input type="text" name="idno" style="background-color:#FFFF00" >
用button做超連結將網頁開啟
方法一:
<input type="button" value="連結" on click="window.location='http://www.hinet.net '" >
方法二:
<form .... > 裡頭 加上 target = "xxxx" 就可了
表單輸入格的背景色 ?
<input type="text" name="idno" style="background-color:#FFFF00" >
用button做超連結將網頁開啟
方法一:
<input type="button" value="連結" on click="window.location='http://www.hinet.net '" >
方法二:
<form .... > 裡頭 加上 target = "xxxx" 就可了
方法一:
<body bgcolor="#FFFFFF" background="../xxx/xxx/xxx.jpg"bgproperties="fixed">
這樣就可以了!!
方法二:
用css
body { background-image: url("image.gif");
background-attachment: fixed;
}
css可能可以達到部分的效果 昨天測試的語法如下
<style>
.tbutton
{
text-align: center;
border-left: solid 2px #FFFFFF;
border-top: solid 2px #FFFFFF;
border-right: solid 3px #A3A092;
border-bottom: solid 3px #A3A092;
cursor: hand;
background-color: #EEF3FB;
width : 70px;
}
</style>
<input type="text" width="104" class="tbutton">
★將表單裡的文字方塊變成有陰影的效果★