更新中……
1、某些css樣式在有的網頁中可行,在有的網頁中不可行的問題。
將網頁html代碼<html>標籤之前的<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">去掉即可。
2、圖片做超連結的時候有藍色邊框的問題
如
<a href="main_left.html" target="mainFrame"><img src="images/main_l_09.jpg" width="211" height="57" /></a>
解決辦法:在<img>裡面加border="0"屬性。
3、form與表格間有間隙的問題
給頁面添加樣式:body { margin: 0px;}
4、英文撐破表格的問題
給所有表格添加樣式
td {
word-break:break-all;
word-wrap:break-word;
}
5、xp sp2中IE提示資訊列的問題
把在IE----INTERNET選項---進階裡面的
“允許主動式內容在我電腦上的檔案運行”選中
6、圖片和文字在同一行垂直置中的問題
給圖片加樣式vertical-align:middle 具體例子如:
<img src="images/png-064.jpg" alt="恭喜!" width="72" height="67" style="vertical-align:middle" />
7、讓文字框不顯示記錄
給input加屬性 autocomplete="off"
如:
<input type="text" style="width: 60px" size="6" maxlength="4" autocomplete="off"/>
8、讓textBox輸入框帶背景的css:
.logon_input{
font-size: 12px;
color: #333333;
background-image: url(../image/logon_03.jpg);
height: 20px;
width: 180px;
border: 1px solid #B7BAC4;
padding: 2px;
}
9、submit和reset按鈕自訂圖片的css
.logon_button1{
background-image: url(../image/logon_04.jpg);
height: 25px;
width: 51px;
border:0;
cursor: hand;
}