本月博客排行
-
第1名
龙儿筝 -
第2名
johnsmith9th -
第3名
wy_19921005 - zysnba
- sgqt
- lemonhandsome
年度博客排行
-
第1名
宏天软件 -
第2名
青否云后端云 -
第3名
龙儿筝 - gashero
- wallimn
- vipbooks
- benladeng5225
- wy_19921005
- fantaxy025025
- qepwqnp
- e_e
- 解宜然
- zysnba
- ssydxa219
- sam123456gz
- javashop
- arpenker
- tanling8334
- kaizi1992
- xpenxpen
- gaojingsong
- wiseboyloves
- xiangjie88
- ranbuijj
- ganxueyun
- sichunli_030
- xyuma
- wangchen.ily
- jh108020
- lemonhandsome
- zxq_2017
- jbosscn
- Xeden
- luxurioust
- lzyfn123
- zhanjia
- johnsmith9th
- forestqqqq
- nychen2000
- ajinn
- wjianwei666
- hanbaohong
- daizj
- 喧嚣求静
- silverend
- mwhgJava
- kingwell.leng
- lchb139128
- lich0079
- kristy_yy
最新文章列表
div之min-height和max-height
-
max-height
The value of the max-height property overrides height.
min-height
The value of the min-height property overrides both max-height and height.
Default value: 0
Inherited: no
Ver ...
css之min-width属性
CSS min-width 属性
---------------------设置元素的最小宽度
---------------------该属性值会对元素的宽度设置一个最小限制。因此,元素可以比指定值宽,但不能比其窄。不允许指定负值。
默认值:
none
继承性:
no
版本:
CSS2
JavaScript 语法:
IE6中max-width解决方案
.ie6-max-width-fix {
padding: 0;
_width: expression((function(el){ el.style.width = (el.clientWidth > 600 ? '600px':''); })(this));
}
一般都建议不要在 expression 里面判断和设置同一个元素的同一个属性(这样会导致脚本不停执行), ...