星期三, 11月 12th, 2008
一直不知道怎么用CSS实现文字重影的效果,今天溜达到ui.jquery.com,看到了这个实例,用Firebug查看那了下,终于弄明白了。
实现的方法见下图(侧头,哈哈):
[caption id="" align="aligncenter" width="300" caption="CSS 实现文字重影的效果"][/caption]
至于说为什么要把图竖过来,想不明白的看官可以和我沟通哈哈。
Posted in CSS+HTML | No Comments »
星期三, 10月 22nd, 2008
原文在这里:
http://www.webdesignerwall.com/tutorials/how-to-css-large-background
body {
padding: 0;
margin: 0;
background: #f8f7e5 url(http://www.webdesignerwall.com/wp-content/themes/wdw/images/main-bg.jpg) no-repeat center top;
width: 100%;
display: table;
}
要点是:
center, top
和
width: 100%;
display: table;
Posted in CSS+HTML, 培训 | No Comments »