web基础知识

1.浏览器默认字体大小是font-size:16px;谷歌最小字体是10px,其他浏览器是12px。

    Font属性可以继承 详细的知识见 9.11

1.选择器

 

    通配符选择器   *   所有的标签

 

    标签  class  id 后代 子代 交集 

3.background背景

   背景颜色  简写background:red;

 

   背景图片 background-image:url(“路径”);简写 background:url();

扫描二维码关注公众号,回复: 3155404 查看本文章

 

   备注  标签请求外面资源 有三种属性  href  src  url

       ie9一下给body设置background-color 不起作用 需要用bgcolor

 背景图片平铺:

 

  1. 平铺 浏览器默认就平铺
  2. 不平铺 no-repeat
  3. 平铺x轴或y轴 background-repeat:repeat-x;

背景大小background-size:100% 100%;

background-size属性值的写法

        可以设置具体的大小  200px  200pxauto 自适应(一般做属性值)

背景位置background-position  也是坐标轴 向下为正 向右为正数

背景简写:标签名{background:颜色 url图片 平铺  位置(具体数字,百分比,top,left,right,botto,center)}

边框简写:标签名{border:颜色 粗细 样式}

          边框圆角 border-radius后面跟具体数值或百分比

 

 

 

 

猜你喜欢

转载自www.cnblogs.com/jiangningjn/p/9637345.html