标签:表单 电脑 顺序 包含 presto point 透明 字体 copy
<h3>前端日常</h3> <form action="https://www.baidu.com"> <table border="1px" cellspacing="0px"><!--cellspacing单元格间隙--> <thead></thead><tbody> <col span="2" width="100px"><!--前两列宽度改变--> <col span="1" width="100px"><!--最后单列宽度改变--> <tr> <td width="100px" align="center">11</td> <td colspan="2">22</td><!--colspan占据两个列度--> </tr><tr> <td rowspan="2" align="center">sdfs</td><!--rowspan占据2行,下一行需要删掉相应列--> <td><input type="text" name="loginname"></td><!--radio单选 file文件checkbox复选--> <td><input type="password" name="pwd"></td> </tr><tr align="center"> <td colspan="2"> <input type="submit" value="确认"> <input type="reset" value="重置"> </td> </tr></tbody> <tfoot></tfoot> </table> </form>
a{color:red}a:hover{color:green}除了划过不一样,其他样式相同 a:link{}初始状态 a:visited:{}被访问后 a:hover{}划过 a:active{}按下时
1 100 1 10 1 =113权重 ul #NAV li.active a
font-family{文字1,文字2;font-size:;color:;font-weight:bolder/bold/normal/100-900(600-900才会看到加粗状态); font-style:italic/oblique(倾斜幅度更大)/normal;text-align:justify(两端边界线对齐);line-height:normal; text-decoration:none/underline/overline/line-through; text-indent:50px 首行缩进,可以负值,隐藏文本,只对第一行起作用,如果第一行不是文字,则不变;}
"circle"空心圆"square"方形(个浏览器显示效果不一样,如果用list-style-image,如果字体大小改变,这个方法就不适用,一般用background-image)
<ul type="disc">实心圆,默认, <li><a href="#" title="提示文本">sfsdfsdfsdf</a></li> <li><a href="#">sfsdfsdfsdf</a></li> </ul>
<ol type="1"> 默认 ,"A""I""a" <li><a href="#">sfsdfsdfsdf</a></li> <li><a href="#">sfsdfsdfsdf</a></li> </ol>
<dl> <dt>名词</dt> <dd>解释</dd> 后退两格显示,一个dt可以带很多dd </dl>
backgroud:{#444 url() norepeat left top;}; background-color background-image:url(background-repeat:no-repeat/repeat/repeat-x/repeat-y; background-positoin:水平px(left/center/right) 垂直px(top/center/bottom););
a{display: block;height: 40px;width: 50px;background: #333;text-align: center; text-decoration: none;line-height: 22px;font-size:14px;border:1px solid #000;color:#666}
<label for="male">男</label><input type="radio" name="sex" id="male"/> <label for="female">女</label><input type="radio" name="sex" id="female" />
标签:表单 电脑 顺序 包含 presto point 透明 字体 copy
原文地址:https://www.cnblogs.com/solaris-wwf/p/11614434.html