1. 我们对css的box model的概念理解起来很直观很“容易”,但总是在实际使用时会遇到这样那样莫名其妙的问题,常见的就是为什么最终不是我们定义设置的宽度和高度,最终导致我的div为什么看不见了或者我的排版为什么都乱掉了? 1.如果一个div不设置width(即width的值为默认值auto)而设置padding时,div会内缩。 2.如果一个div设置了width和padding就会使得width增大。 对于一个不常使用css和html的我,写到UI时就常 ...

    阅读全文
  2. 方法1: <input type=text style="border-style:none"> 方法2: 给input设置border:none;但在iE6下不行,还有边。应该将 border:none; 换成border:0; 这是ie6 的兼容性问题 或者<input type="text" name="sample" border="0"/> 方法3: ...

    阅读全文
  3.  本文收集了CSS实现的基本形状,以及border-radius的文档解释。 border-radius中比较难理解的是由/设置的附加弧度实现椭圆型的边角。 Syntax The border-radius property is specified as: 1.one, two, three, or four <length> or <percentage> values. This is used to set a single ...

    阅读全文