我这里有一个image
,我只想显示特定的位置。但是我的没有用。我只希望查看这些手而不会裁剪原始的image
。预先感谢
预期结果
HTML
<div class="banner">
<h1>できる限り<br>
自然な形で育てた<br>
こだわりの野菜です。</h1>
<h4>生産者/川口太郎・川口久美子さん(安芸市)</h4>
</div>
CSS
.banner{
background: url(../img/img1.png);
background-size: 100%;
padding: 32% 0 5% 6%;
color: white;
letter-spacing: 0.1em;
border-radius: 1%;
}
答案 0 :(得分:3)
background-size
和background-position
CSS属性的组合。不要忘记,您可以使背景尺寸值大于100%。我会把它扔在那里并从那里进行微调:
.banner{
background: url(../img/img1.png);
// background-size takes height and width but shorthand is one value used for both
background-size: 200%;
// background-position options include center, cover, and more: https://developer.mozilla.org/en-US/docs/Web/CSS/background-position
background-position: center center;
}
答案 1 :(得分:0)
使用CSS剪辑。您可以在页面上裁剪图像,而无需编辑原始图像源文件。