CodePen Home Animated Loading Spinner
摘要:HTML: <!DOCTYPE html><html> <head> <link rel="stylesheet" href="background_styles.css"> <link rel="stylesheet" href="styles.css"> <title>Animated Load
阅读全文
posted @
2021-12-22 15:08
cw_volcano
阅读(40)
推荐(0)
解决Google浏览器不兼容ASP.NET Menu控件的问题
摘要:经过我狂搜了一下, 发现目前只有CSSFriendly才能修复这个问题, CSS Friendly是一个非常不错的开源项目, 也是备受微软官方关注的, 他的主页是: http://www.codeplex.com/cssfriendly .打开解决方案,查看SimpleMenu.aspx页面,发现唯一特别之处就是使用了一个CssSelectorClass="SimpleEntertainmentMenu" 来加载CSS样式.大家可以看到这个模板中可以让ASP.NET中各种控件重新设定样式, 好了, 到这里我们已经基本了解了CSS Friendly的运作原理, 然后我们来将其
阅读全文
posted @
2012-11-09 09:33
cw_volcano
阅读(305)
推荐(0)
CSS笔记
摘要:http://www.w3school.com.cn/css/css_positioning_floating.asp对于定位的主要问题是要记住每种定位的意义。相对定位是“相对于”元素在文档中的初始位置,而绝对定位是“相对于”最近的已定位祖先 元素,如果不存在已定位的祖先元素,那么“相对于”最初的包含块。创建浮动框可以使文本围绕图像,要想阻止行框围绕浮动框,需要对该框应用 clear 属性。clear 属性的值可以是 left、right、both 或 none,它表示框的哪些边不应该挨着浮动框。由于浮动框不在文档的普通流中,所以文档的普通流中的块框表现得就像浮动框不存在一样。<div
阅读全文
posted @
2012-11-06 16:25
cw_volcano
阅读(202)
推荐(0)
The Basics of CSS3
摘要:RGBAThe first three values are RGB color values and the last value is the level of the transparency (0 = transparent and 1 = opaque).RBGA can be applied to any properties associated with color such as font color, border color, background color, shadow color, etc.Text ShadowText shadow is structured
阅读全文
posted @
2012-04-25 15:27
cw_volcano
阅读(183)
推荐(0)
浏览器CSS兼容
摘要:<!--[if lt IE 7]><body class="ie ie6"><![endif]--><!--[if IE 7]><body class="ie ie7"><![endif]--><!--[if IE 8]><body class="ie ie8"><![endif]--><!--[if !IE]><!--><body class="standard"><
阅读全文
posted @
2011-09-25 20:45
cw_volcano
阅读(251)
推荐(0)