css day02
1、ul>li 无序列表 ol>li 有序列表 去掉样式:list-style: none;(list 列表)
2、dl>dt+dd 自定义列表(少用)
3、插入图片:<img width=“100” height=“100” scr=“img/a.jpg”/>
4、超链接:<a href="#" target="_blank">百度</a>
(target :子页面的打开方式; _blank 新建页面打开; _parent 本页面|原来页面打开)
(去掉a链接下面的下划线:text-decoration: none; 改变字体颜色:color: red;)
(text-decoration 文本装饰; underline 文本下划线)
【所以:text-decoration:underline; 可以给p标签加下划线】
5、input的用法;
单选按钮:radio 需要为它们的name属性设置相同的属性;
给radio,checkbox(多选按钮)设置默认选中:checked="checked";
下拉框 select>option 默认选中:selected="selected"
文本域: textarea ;设置不可改变框架大小:设置样式:style="resize: none;"
6、form的用法;当input使用reset(清空)效果时,没有起到作用,是因为input需要在form表单内使用,