gpt4 book ai didi

html - CSS 中的填充不起作用

转载 作者:太空宇宙 更新时间:2023-11-04 13:34:10 24 4
gpt4 key购买 nike

这是我的代码由于某种原因,我无法在图片上显示文字,这是为什么?

HTML:

<html>
<head>
<link rel="stylesheet" type="text/css" href="ilo.css">
<title>Drum World</title>
</head>
<body background="back.jpg">
<center><strong><font face="arial" size="10" color="#3366CC">Perfect Gallery OF Drums! </font></strong>
</center>
<br>
<br>
<font face="Verdana" size="3" color="#006666"><strong><center>Enjoy viewing all sorts of drums</center></strong></font>
</br>
</br>
<img src="pearl drum.jpg" border="5px">
<p id="txt">TEXTTEXTTEXT</p>
</img>

这是 CSS:

#txt {
padding: 15px 35px 5px 5px;
}

最佳答案

如果你想让“文字”出现在图片上,你可以给你的 img 一个相对定位,给 p 一个绝对定位。此外,修复您的 html 标签,它们已被弃用并弄乱了 >.<.

http://jsfiddle.net/GNkKL/

img{
position:relative;
}

#txt
{
padding: 15px 35px 5px 5px;
position:absolute;
top:0;
}

关于html - CSS 中的填充不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23162197/

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