huangxuegang

你要悄悄学php,然后惊艳所有人
  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

css之背景

Posted on 2020-08-01 16:47  一花多叶无菩提  阅读(99)  评论(0)    收藏  举报
body {background-color:#b0c4de;}/*背景颜色*/
        body {background-image:url('images/1.jpg');}/*背景图片默认平铺*/
        body {background-image:url('images/1.jpg');background-repeat:no-repeat;}/*背景图片不平铺*/
        body {background-image:url('images/1.jpg');background-repeat:repeat-x;}/*背景图片水平平铺*/
        body {background-image:url('images/1.jpg');background-repeat:repeat-y;}/*背景图片垂直平铺*/
        body {background-image:url('images/1.jpg');background-position:right top;}/*背景图片位置*/
        body {background-color:#b0c4de;background-attachment: fixed;}/*背景图片是否滚动*/