gpt4 book ai didi

html - Div边框不显示

转载 作者:太空狗 更新时间:2023-10-29 15:46:11 25 4
gpt4 key购买 nike

由于人们的代码存在许多差异,我很难找到问题的直接答案。

我想我的代码可能非常困惑,因为我正在尝试为我的合作伙伴快速构建一个网站(我只有几个小时的 Dreamweaver 经验,仅此而已)!

无论如何,我有一个固定宽度的网站,其中一列大约有 6 个单独的 div,所有内容都包含在一个网页大小的 div 中,用于我的背景颜色。

无论如何,当我尝试为页脚添加边框时,它不会显示在浏览器中。我只是想要 1px 将“主要”div 与页脚分开,它不会出现。这对于我的导航 div 也是一样的。

      body{
color:#00000;
margin-left:0px;
margin-right:0px;
margin-top:0px;
margin-bottom:0px;
}


#body{
background-color:#000000;
}


#header{
width:800px; /* The width is fixed by pixels */
height:150px; /* The height is fixed by pixels*/
color:#fff;
margin-left:auto;
margin-right:auto;
margin-top:0px;
margin-bottom:0px;
}

#navigation {
width:798px;
height:51px;
margin-left:auto;
margin-right:auto;
margin-top:0px;
margin-bottom:0px;
border-style:solid; /*Selecting solid made the border appear*/
border-left:1px;
border-right:1px;
border-top:0px;
border-bottom:1px;
border-color:#000000;
text-align:center;
background-color:ffffff;

}

#main {
width:798px; /* The width is fixed by pixels */
height:800px; /* The height is fixed by pixels*/
color:#fff;
background-color:#fff;
margin-left:auto;
margin-right:auto;
margin-top:0px;
margin-bottom:0px;
border-style:solid; /*Selecting solid made the border appear*/
border-left:1px;
border-right:1px;
border-top:0px;
border-bottom:0px;
border-color:#000000;
text-align:center;

}

#footer {
/*Styling for any element with the id="container" */
width:798px; /* The width is fixed by pixels */
height:100px; /* The height is fixed by pixels*/
color:#fff;
background-color:#fff;
margin-left: auto;
margin-right:auto;
border-style:solid;
border-left:1px;
border-right:1px;
border-bottom:1px;
border-top:1px;
border-color:#000000;
}

#Facebook {
float:right;
}

#Twitter {
float:right;
}

#LinkedIn {
float:right;
}




</style>
</head>
<body>
<div id="body">
<div id="header">
<a href="Home.html"><img src="Images/Logo.jpg" alt="Ruth Fifer Jewellery"> </a>
</div>

<div id="main">
<div id="navigation">
<br />
</div>
<br />
<br />
<img src="Images/Home Image.jpg" />
</div>
<div id="footer">

<a href="https://www.facebook.com/ruth.fifer.5?fref=ts" target="_blank"> <img src="Images/facebook.png" alt="Facebook" id="Facebook"/></a>
<a href="https://twitter.com/martynjakins" target="_blank"> <img src="Images/twitter.png" alt="Twitter" id="Twitter"/></a>
<a href="http://www.linkedin.com/profile/view?id=225071408&trk=tab_pro" target="_blank"><img src="Images/linkedin.png" alt="LinkedIn" id="LinkedIn"/></a></div>
</div>
</body>

如果有人能够提供帮助,那就太好了,因为我感觉我可能由于缺乏经验而使用了冲突的代码,但现在没有时间学习所有内容,而是会回到某个地方我有更多时间来调整事情。

谢谢,

马丁

最佳答案

1) 写入<!DOCTYPE><html><head>标记在代码的开头。

2) 写入</html>标记在代码末尾。

和使用:

border: 1px 0px solid #000000;

它会解决你的问题。看http://jsfiddle.net/p2269/1/我按照我的解释编写了代码,它显示了边框。

关于html - Div边框不显示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16874084/

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