div css布局注意

2021-05-26 11:58:25 字數 505 閱讀 1944

1. 

在div中無任何元素是用  佔位。

2 編寫css時

.#maincontent

寬高應加px,特別是設定背景時,必須加px.

3.jsp中定義了input無邊框的css樣式

用:border:0px 一定要寫成 0px 不要寫成none

4.去掉 li中的小點

ul 加padding:0px;

li 加

list-style: none;

list-style-type:none;

margin:0px;

5. 對於 disabled 在ff 中不變色應對

*[disabled] /*讓所有帶disabled屬性的節點文字都變灰色,這條css2規則firefox支援*/

6. 火狐專用樣式

.list11

7.div 在div 水平居中

margin: 0px  auto; width: 240px;//div 必須有寬度

div css布局注意點

一 div居中 container margin 1px 2px 3px 4px 其中四個值分別代表上右下左 順時針 margin 1px 2px 其中1px代表分別距瀏覽器上邊和下邊的距離,2px代表分別距左右的距離。margin 0 auto 0 代表距上下的距離,auto代表距左右的距離。當左...

div css布局注意點

一 div居中 container margin 1px 2px 3px 4px 其中四個值分別代表上右下左 順時針 margin 1px 2px 其中1px代表分別距瀏覽器上邊和下邊的距離,2px代表分別距左右的距離。margin 0 auto 0 代表距上下的距離,auto代表距左右的距離。當左...

div css布局漫談

1.css布局常用的方法 float none left right 取值 none 預設值。物件不飄浮 left 文字流向物件的右邊 right 文字流向物件的左邊 它是怎樣工作的,看個一行兩列的例子 xhtml 這裡是第一列 這裡是第二列 css wrap column1 column2 cle...