【问题标题】:why in background size the height is not working?为什么在背景尺寸中高度不起作用?
【发布时间】:2021-08-14 13:17:10
【问题描述】:

background-size height 属性为什么不起作用?

body{
    background-image: url("images/1.jpg");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: 50px 50px;   
}

【问题讨论】:

标签: css background-size


【解决方案1】:

试试这个;

body{
  background-image: url('images/1.jpg');
  background-repeat: no-repeat;
  background-width: 100%;
  background-size: 100%;
  background-position: 50px 50px;
}

也许它会解决问题(:

【讨论】:

    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 2016-10-19
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2014-08-01
    • 2013-07-18
    • 1970-01-01
    相关资源
    最近更新 更多