2015年12月2日

导航

摘要: 水平导航栏的设置display:inline 不能设置导航项的宽度 1 2 3 4 33 34 35 36 37 Home38 News39 Contact40 About41 42 43 44 45 Float:left 可以设置导航项的宽度 HomeNew... 阅读全文

posted @ 2015-12-02 16:16 wjw413c 阅读(135) 评论(0) 推荐(0) 编辑

Automatic Numbering With CSS Counters

摘要: IntroductionWhen writing documents, it is often useful to number sections and have a table of contents. You can number these by hand, directly in the ... 阅读全文

posted @ 2015-12-02 15:33 wjw413c 阅读(102) 评论(0) 推荐(0) 编辑

CSS content内容生成技术以及应用

摘要: 转载自:http://www.zhangxinxu.com/wordpress/?p=739一、哗啦哗啦的简介zxx://这里“哗啦哗啦”的作用是为了渲染一种氛围。content属性早在CSS2.1的时候就被引入了,可以使用:before以及:after伪元素生成内容。此特性目前已被大部分的浏览器支... 阅读全文

posted @ 2015-12-02 15:05 wjw413c 阅读(78) 评论(0) 推荐(0) 编辑

CSS中的Float

摘要: CSS 的 Float(浮动),会使元素向左或向右移动,其周围的元素也会重新排列。元素的水平方向浮动,意味着元素只能左右移动而不能上下移动。一个浮动元素会尽量向左或向右移动,直到它的外边缘碰到包含框或另一个浮动框的边框为止。浮动元素之后的元素将围绕它。浮动元素之前的元素将不会受到影响。如果图像是右浮... 阅读全文

posted @ 2015-12-02 13:23 wjw413c 阅读(170) 评论(0) 推荐(0) 编辑

Sharepoint CommandAction

摘要: AttributeDescriptionCommandRequired. The name of a command. The value of this attribute matches the value of aCommandattribute on an element that defi... 阅读全文

posted @ 2015-12-02 11:55 wjw413c 阅读(169) 评论(0) 推荐(0) 编辑

CSS中的Position

摘要: Position定位有四种方法:static,fixed,relative和absoluteStaticHTML元素的默认值,即没有定位,元素出现在正常的流中。静态定位的元素不会受到top, bottom, left, right影响。Fixed元素的位置相对于浏览器窗口是固定位置。即使窗口是滚动的... 阅读全文

posted @ 2015-12-02 09:35 wjw413c 阅读(147) 评论(0) 推荐(0) 编辑

JS的NodeType, NodeName和NodeValue

摘要: 今天看到有使用NodeType的情况,顺便查了下,这里记下以备以后使用,(这三个属性是Javascript的标准属性,不是Jquery中特有的)1.NodeType元素类型节点类型元素1属性2文本3注释8文档92. nodeName ---返回某个节点的名称。元素节点的nodeName是标签名称属... 阅读全文

posted @ 2015-12-02 09:11 wjw413c 阅读(436) 评论(0) 推荐(0) 编辑

导航