之前,因为公司专门有CSS+DIV的切片设计师,所以我一直都是注重程序的设计与开发.现在,因为接了一些Web网站的项目需要制作,就在空闲时间学习起了CSS.Jquery. 现在,大部分的横排导航都是通过 ul -> li *n -> a 来实现的.具我所知,要达到这种效果,有几种方法可以实现. 1.传统处理方式: li {float:left;}/*这样,对固定宽度导航条来说,li不能自动居中*/ 2.inline-block方式: ul {text-align:center;font-f…
现在,大部分的横排导航都是通过 ul -> li *n -> a 来实现的.具我所知,要达到这种效果,有几种方法可以实现. 1.传统处理方式: li {float:left;}/*这样,对固定宽度导航条来说,li不能自动居中*/ 2.inline-block方式 ul {text-align:center;font-family:simsun;font-size:14px;} li {display:inline-block;*display:inline;zoom:1;margin-righ…
参考 https://stackoverflow.com/questions/9189810/css-display-inline-vs-inline-block An inline-block element is placed as an inline element (on the same line as adjacent content), but it behaves as a block element. display: inline-block总结: 可以让其他元素在它的左边或…
区别一: display:none Turns off the display of an element (it has no effect on layout); all child elements also have their display turned off. //隐藏这个元素;所有的子元素也跟着他隐藏. visibility:hidden The box is invisible (fully transparent, nothing is drawn), but stil…