gpt4 book ai didi

html - 将 CSS 用于边框内的图像

转载 作者:行者123 更新时间:2023-11-28 18:51:28 24 4
gpt4 key购买 nike

我有一些正在处理的 CSS 和 HTML,我想分出作为图像的 div block 的内容,并保留带有圆边的边框。但是当我预览代码时图像没有显示。 CSS 和 HTML 链接正确。不可否认,这只是我为了学习更多关于 CSS 和 HTML 的小修小补。

如果您能看看这个并给我一些关于如何让图像显示在圆形框中的见解,我将不胜感激。

编辑:恐怕我对问题所在还不够清楚。标题标签中的图像以及与“a.title”CSS 代码关联的图像不是问题,这只是一个标题图像。

问题是我希望图像出现在 HTML 的 div class="content"部分,图像源来自 div.content 的 CSS 部分。

我很不擅长解释我的问题,抱歉。但感谢您迄今为止提供的所有帮助!

HTML:

<html>
<head>
<title>Some Title</title>
<link href="/Volumes/lastname/sitename/css/style.css" rel="stylesheet" type="text/css" media="all">
</head>

<body>

<div id="container">

<p class="title"><img src="/Volumes/last/sitename/media/header3.png"></img></p>

<div class="navbar">
<a class="nav" href="http://www.facebook.com">Facebook</a>
<a class="nav" href="http://www.twitter.com">Twitter</a>
</div>

<div class="content">
</div>

</div>

</body>

</html>

这是 CSS - 我知道的代码比你需要知道的要多,但无论如何:

body {
background: #ffffff
width: 1000px;
height: 800px;
margin: 0 auto;
font-family: "Arial";
}

#container {
width: 900px;
height: 800px;
margin: 0 auto;
}

div.content {
background-image: url('/Volumes/last/sitename/media/imagename.jpg') no-repeat;
border-style: solid;
border-width: 2px;
width: 900px;
height: 500px;
margin-top: -20px;
border-radius: 7px;
border-color: #a0a0a0;
}

a.title {
margin-top:120px;
font-size: 36px;
}

div.navbar {
margin-top: -62px;
float: right;
font-size: 18px;
}
a.nav {
text-decoration: none;
color: #717171;
padding-right: 20px;
}
a.nav:hover {
color: #1299d6;
}

div.text {
margin-top: 100px;
}


p.text1 {
display: block;
text-align: center;
}


p.text2 {
display: block;
text-align: center;
}


p.text3 {
display: block;
text-align: center;
}


p.text4 {
display: block;
text-align: center;
}

div.links {
margin-top: 50px;
text-align: center;
}

a.links {
text-decoration: none;
color: #ffffff;
padding-left: 10px;
padding-top: 5px;
padding-right: 10px;
padding-bottom: 5px;
border-radius: 10px;
opacity: 0.6;
}

a.twitter {
background: #42a300;
}

a.contact{
background: #1299d6;
}

a.subbutton{
background: #690260;
}

a.links:hover {
opacity: 1.0;
}

最佳答案

首先你的图片标签是错误的。必须是

<img src="/Volumes/last/sitename/media/header3.png" />

http://jsfiddle.net/vBRBM/

测试代码。

关于html - 将 CSS 用于边框内的图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9168915/

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