
HTML+CSS+JS
Html
三 丰
Everything will be okay in the end. If it's not okay, it's not the end.
展开
-
CSS 画三角形
You can make them with a single div. It's nice to have classes for each direction possibility. The idea is a box with zero width and height. The actual width and height of the arrow is determine转载 2014-12-25 20:07:10 · 684 阅读 · 0 评论 -
CSS教程
CSS设置颜色渐变 适用于谷歌浏览器: background: -webkit-gradient(linear, 0 0, 0 100%, from(#4285fa), to(#366dcb)); from:是指渐变起始颜色 to:是指渐变结束的颜色 适用于火狐浏览器中: background: -moz-linear-gradient( top,#4285fa,#366dcb)原创 2013-01-07 22:33:44 · 435 阅读 · 0 评论 -
图片定时蒙版
图片蒙版 body{ margin:0; } .backClass{ position:absolute; width:100%; height:100%; z-index:1; background-color:#999933; filter:alpha(opacity=50); -moz-opacity:原创 2012-10-31 23:07:55 · 818 阅读 · 0 评论 -
简单的蒙版
蒙版 body{ margin:0; } .backClass{ position:absolute; width:100%; height:100%; z-index:1; background-color:#999933; filter:alpha(opacity=50); -moz-opacity:0.原创 2012-10-31 22:46:19 · 861 阅读 · 0 评论 -
CSS处理文本内容过长
不论是中文还是英文,支持各种标签各种浏览器,编码如下 文本内容过长时截断处理 .text{ width:92px; /*指定文本可现实的长度*/ overflow:hidden; /*内容会被修剪,并且其余内容是不可见的。*/ text-overflow:ellipsis; /*截断文字,显示省略号(...)*/ whi原创 2012-10-25 23:06:48 · 1297 阅读 · 0 评论 -
Html定时重定向
http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> http://www.w3.org/1999/xhtml"> 重定向 对不起。我们已经搬家了。您的 URL 是 http://www.baidu.comhttp://www.baidu.com">http://www.baidu.com> 您将在原创 2012-10-31 23:32:16 · 948 阅读 · 0 评论