
css
我在北京吃泡面
这个作者很懒,什么都没留下…
展开
-
table表格的一些属性
word-break:keep-all;字体不断开 white-space:nowrap: HTML中td元素的nowrap属性表示禁止单元格中的文字自动换行。 但使用时要注意的是,td元素中nowrap属性的行为与td元素的width属性有关。如果未设置td宽度,则nowrap属性起作用的,如果设置了td宽度,则nowrap属性不起作用。 关键字原创 2013-08-19 16:39:34 · 632 阅读 · 0 评论 -
media对各种设备的判断-可以用于响应式设计
@media only screen and (min-device-width : 320px) and (max-device-width : 480px) { /* Smartphones (portrait and landscape) */}@media only screen and (min-width : 321px) { /* Smartphones (landscape) */转载 2014-07-31 10:30:29 · 629 阅读 · 0 评论 -
css3制作小三角和镂空样式的小三角
纯CSS气泡框实现方法探究 可以先看看这个,然后我们总结一个实现小三角方法 先看html CSS气泡框实现 css: .tag{ width:300px; height:100px; border:5px solid #09F; position:relative;} .tag .tri{position: absolute;原创 2014-12-22 17:24:35 · 1003 阅读 · 0 评论