-
网页布局的基本步骤查看全部
-
网页布局的结构查看全部
-
button 设置了宽高就不发设置pading查看全部
-
样式重置 https://necolas.github.io/normalize.css/4.1.1/normalize.css查看全部
-
http://www.bootcss.com/p/font-awesome/ 字体图标查看全部
-
background-size:cover;查看全部
-
透明 transparent查看全部
-
ul.share-group{} <ul class="share-group"></ul>查看全部
-
.card:first-child{ background: rgba(0,0,0,0.04); } .card:nth-child(2){ background: rgba(0,0,0,0.08); } .card:nth-child(3){ background: rgba(0,0,0,0.07); }查看全部
-
-webkit-box-sizing:border-box; -moz-box-sizing:border-box; box-sizing:border-box;查看全部
-
.txt-section > * {/*所有直系的子元素} .aticle-preview > div{/*只向下一级的所有元素div*/ } .clearfix:after{/*伪元素 给父级清除浮动*/ content: '';/*给个空内容*/ display: block; clear:both; }查看全部
-
Odd 和 even 是可用于匹配下标是奇数或偶数的子元素的关键词(第一个子元素的下标是 1)。 p:nth-child(odd) { background:#ff0000; } p:nth-child(even) { background:#0000ff; }查看全部
-
<header></header><!-- 页头 --> <div class="content"> <section></section><!-- 正文 --> <section></section><!-- 正文 --> <section></section><!-- 正文 --> </div><!-- 内容 --> <footer></footer><!-- 页脚 -->查看全部
-
<form > <input type="text" required="required" title="请输入姓名"><!-- 必填项 --> <input type="text" placeholder="获得焦点时,文字消失"><!-- --> <input type="text" pattern="[0-9]{6}"><!--自定义正则表达式--> <input type="file" multiple="multiple"><!-- 选择多个文件上传 --> <input type="number" min="0" max="12" step="3"><!-- min 最小值 max最大值 step倍数 --> <input type="image" src="../images/cs.jpg" height="20" width="30"><!-- height width --><br/> <input type="tel" ><!-- tel类型 电话 --><br/> <input type="search" ><!-- search 类型 搜索 输入内容之后 出现 x --><br/> <input type="submit" > </form>查看全部
-
https://necolas.github.io/normalize.css/3.0.2/normalize.css 初始化css代码 Normalize.css 只是一个很小的CSS文件,但它在默认的HTML元素样式上提供了跨浏览器的高度一致性。相比于传统的CSS reset,Normalize.css是一种现代的、为HTML5准备的优质替代方案。 https://necolas.github.io/normalize.css/5.0.0/normalize.css查看全部
举报
0/150
提交
取消