Tag Archives: css

media of css

<LINK>标记也有一个可选的MEDIA属性,用于指定样式表被接受的介质或媒体。允许的值有

screen (缺省值),提交到计算机屏幕; print, 输出到打印机; projection,提交到投影机; aural,扬声器; braille,提交到凸字触觉感知设备; tty,电传打字机 (使用固定的字体); tv,电视机; all,所有输出设备。

样的媒体通过用逗号隔开的列表或值all指定。

Posted in WebDev | Tagged | Leave a comment

how the text always on the bottom of the page

body,td,th { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 12px; color: #000; } body { background-color: #fff; margin-left: 0px; margin-top: 0px; margin-right: … Continue reading

Posted in WebDev | Tagged , | Leave a comment

CSS 学习资料

文章

Strategies for Long-Term CSS Hack Management Designing Data Part 2: Adding Style Designing Data Part 1: Table structure A Roadmap to Standards … Continue reading

Posted in WebDev | Tagged | Leave a comment

How to add print functuion on your website

if you wanna add print function on your website ,and want hidden some conent when user priveiew print ,you can add a diffrent css for print and with media keyword (media=”print”) ,that’s all ,easy hidden any part of content as … Continue reading

Posted in WebDev | Tagged , | Leave a comment