Свойства CSS: Как установить фоновое изображение начинается с верхнего левого угла рамки?
Перейти на страницу упражнений
Решение:
HTML-код:
<!DOCTYPE html>
<html>
<head>
<title>How to set the background image starts from the upper left corner of the border</title>
<style type="text/css">
#xyz1 {
border: 8px dashed #3300CC;
padding: 40px;
background: url(/images/w3resourcelogo.gif);
background-origin:border-box;
background-repeat: no-repeat;
}
</style>
</head>
<body>
<div id="xyz1">
<h2>Background image origin</h2>
<p>The background-origin CSS property determines the background positioning area, that is the position of the origin of an image specified using the background-image CSS property.</p>
</div>
</body>
</html>
Демонстрация в реальном времени:
См. Pen background-image-origin-border-box-answer от w3resource ( @ w3resource ) в CodePen .
Поддерживаемый браузер
да | да | да | да | нет |
Каков уровень сложности этого упражнения?
Новый контент: Composer: менеджер зависимостей для PHP , R программирования
disqus2code