Jump to content
  • 0

Особенности background-size: cover


WalkWeb
 Share

Question

Необходимо указывать background: url из текста самой страницы, а также добавить свойство background-size: cover

И вот что заметил - если background-size: cover поместить в стили, то он не работает, а если также на самой странице - то работает:

<html>
<head>
    <title>Background Size</title>
    <style>
        .true {
            width: 300px;
            height: 200px;
            border: 1px solid #888;
        }

        .false {
            width: 300px;
            height: 200px;
            border: 1px solid #888;
            background-size: cover;
        }
    </style>
</head>
<body>
<div class="true" style="background: url(https://5pillarsuk.com/wp-content/uploads/2016/08/google.png) no-repeat center; background-size: cover;"></div>
<div class="false" style="background: url(https://5pillarsuk.com/wp-content/uploads/2016/08/google.png) no-repeat center;"></div>
</body>
</html>

Но мне, разумеется, хотелось бы, чтобы css в html было меньше. Есть ли способы это сделать? (убрать background-size: cover в стили, но чтобы они работали).

Edited by WalkWeb
Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 1

У вас в атрибуте style стоит сокращенное свойство background, которое включает в себя background-size и, соответственно, перебивает его (на дефолтное значение auto в данном случае, т.к. не указано иное). Указывайте там только background-image, а всё остальное (включая background-size) перенесите в стили, и всё будет ОК.

  • Like 1
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy