關於CSS的一些注意事項

來源:互聯網
上載者:User
關於CSS的一些注意事項
1 注釋不能嵌套,不然會出現問題
2 能設高度的要把高度設起
3 另外聲明最好加上:免得瀏覽器差異
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"

"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

4 a標籤(其它標籤要關閉)

關於name和id的區別
表單name與id的區別和相似之處
發表日期:2007-12-9 |

表單的name與id其實是同一個意思,都是為了標記對象名稱。它們所不同的是:name是Netscape的、id是

Microsoft的。

表單元素(form input textarea select)與架構元素(iframe frame)用name。

這些元素都與表單(架構元素作用於form的target)提交有關,

在表單的接收頁面只接收有name的元素。

賦ID的元素通過表單是接收不到值的,大家自己可以驗證一下。 

當然上述元素也可以賦ID值,賦ID值的時候引用這些元素的方法就要變一下了。

賦 name: document.formName.inputName    document.frames("frameName") 

賦 ID  : document.all.inputID           document.all.frameID 

只能賦ID不能賦name的元素:(除去與表單相關的元素都只能賦ID) 

body li a table tr td th p div span pre dl dt dd font b 等等

相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.