CSS 纯CSS IE6最小宽度

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CSS 纯CSS IE6最小宽度相关的知识,希望对你有一定的参考价值。

.min_width
{
	min-width: 500px; /* For good browsers */
}
	* html .min_width
	{
		padding: 0 250px;
	}
	/* This is for the markup that only appears in IE6 thanks to conditional comments */
	.min_width .min_width_inner
	{
		width: 100%; /*  gives the element hasLayout */
	}
		.min_width .min_width_container
		{
			margin: 0 -250px;
			position: relative; /* Fixes negative margin bug */
			float: left;
		}

以上是关于CSS 纯CSS IE6最小宽度的主要内容,如果未能解决你的问题,请参考以下文章

css IE6のための最小高度,最小宽度,最大高度,最大宽度。

前端之css(宽高)设置小技巧

css回顾2

CSS 漂浮在浮动IE6边缘错误的inherted div宽度Bug

CSS IE6的最小高度

css样式中鼠标划过之后在ie6下会晃动是怎么回事啊