1:今天,上课学到了 浏览器字体是 font-size:16px 也知道谷歌最小字体是10px 其他游览器为12px
2:有学到了一个选择器叫通配符 选择器 为* 是所有的标签
3:知识点 背景 background
背景颜色:background-color:red, 简写是 background:red
背景图片 background-image:url("路径") 简写background:url();
标签请求外面资源 有三种属性 href src url
le9 以下给body设置background-color 不起作用 需要用bgcolor
<body
bgcolor="red">
<p>hello</p>
</body>
背景图片平铺:
1: 平铺 游览器默认就是平铺
2: 不平铺 no-repeat
3: 平铺 x轴或 y轴 background-repeat:repeat-x;
背景大小:
background-repeat:no-repeat;
background-size: 100% 100%
边框 border
边框圆角 border-radius 后面的值是具体的数字或者百分比
原文地址:https://www.cnblogs.com/caoxinbo/p/9637604.html
时间: 2024-10-04 16:58:10