gpt4 book ai didi

html - CSS/HTML : Background image Repeat-Y error

转载 作者:太空宇宙 更新时间:2023-11-03 19:18:08 24 4
gpt4 key购买 nike

你好take a look for better understanding .

这里背景 repeat-x 渲染流畅,而背景 repeat-Y 渲染有中断。

<html> <head>
<style type="text/css">
.dark {
width: 100%;
height: 100%;
background: white url('images/button_darkgrey_TPLinux_110x80.jpg');
background-repeat: repeat;

}
</style> </head>

< body>
<div style="width: 500px; height: 350px; z-index: 1">
<input type="button" class="dark" value="7"/>
</div>
</body> </html>

最佳答案

您可以做的是设置背景图片和图片标签 <img class='dark' src="img.jpg" />并为其添加以下 CSS,使其充当背景。

.dark{
position:absolute;
z-index:-1;
width:100%;
height:100%;
}

http://jsfiddle.net/P4rrP/1/ 查看工作示例

关于html - CSS/HTML : Background image Repeat-Y error,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5482547/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com