- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在构建一个网站时遇到了一个问题,即我的 h1 内容与我的导航栏重叠。我在 css 中使用了 margin-top 标签,但它不起作用。
<div class="main">
<div class="header">
<div class="header_resize">
<div class="menu_nav">
<ul>
<li class="active"><a href="index.html">Home</a></li>
<li><a href="#">About Voicecom</a></li>
<li><a href="#">Marketing Sevices</a></li>
<li><a href="#">IT Management Services</a></li>
<li><a href="#">Contact Us</a></li>
<li><a href="#"> Employement Opportunities </a> </li>
</ul>
</div>
<div class="clr"></div>
<div class="logo"><h1><a href="index.html"><span>Voicecom </span> Technologies<br /><small>Communications Any Time Any Where</small></a></h1></div>
<div class="clr"></div>
</div>
</div>
<div class="hbg">
<div class="hbg_resize">
<img src="images/hbg_img.jpg" width="334" height="223" alt="img" class="hbgimg" />
<h2>Read me first...</h2>
<p><strong>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam ac magna a turpis ornare aliquam id hendrerit nisl.</strong></p>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam ac magna a turpis ornare aliquam id hendrerit nisl. Pellentesque adipiscing blandit mollis. Curabitur varius est et sem rhoncus et pretium massa molestie.</p>
<a href="#"><img src="images/readmore.jpg" width="115" height="33" alt="read more" border="0" /></a>
</div>
</div>
</div>
我的 CSS 文件
body {
margin: 0;
padding: 0;
width: 100%;
color: #5f5f5f;
font: normal 12px/1.8em Arial, Helvetica, sans-serif;
}
html,
.main {
padding: 0;
margin: 0;
background-color: #fff;
}
.clr {
clear: both;
padding: 0;
margin: 0;
width: 100%;
font-size: 0px;
line-height: 0px;
}
h1 {
margin: -32px 0 0 0;
padding: 24px 0;
color: #c1c1c1;
font: bold 22px/1.2em Arial, Helvetica, sans-serif;
text-transform: uppercase;
}
h1 a,
h1 a:hover {
color: #D88100;
text-decoration: none;
}
h1 span {
color: #ffa800;
font-size: 40px;
margin-top: 2000px;
}
h1 small {
font: normal 13px/1.2em Arial, Helvetica, sans-serif;
}
h2 {
font: bold 24px Arial, Helvetica, sans-serif;
color: #a3ce67;
padding: 8px 0;
margin: 8px 0;
}
p {
margin: 8px 0;
padding: 0 0 8px 0;
font: normal 12px/1.8em Arial, Helvetica, sans-serif;
}
a {
color: #5e8525;
text-decoration: underline;
}
如果有人需要更多代码,请告诉我,我特此附上其中的一部分。请帮助!!!!
最佳答案
如果您只想让 h1 在页面上靠下,那么您必须删除 css 中的 span。所以它会是这样的:
body {
margin: 0;
padding: 0;
width: 100%;
color: #5f5f5f;
font: normal 12px/1.8em Arial, Helvetica, sans-serif;
}
html,
.main {
padding: 0;
margin: 0;
background-color: #fff;
}
.clr {
clear: both;
padding: 0;
margin: 0;
width: 100%;
font-size: 0px;
line-height: 0px;
}
h1 {
padding: 24px 0;
color: #c1c1c1;
font: bold 22px/1.2em Arial, Helvetica, sans-serif;
text-transform: uppercase;
}
h1 a,
h1 a:hover {
color: #D88100;
text-decoration: none;
}
h1 small {
font: normal 13px/1.2em Arial, Helvetica, sans-serif;
}
h2 {
font: bold 24px Arial, Helvetica, sans-serif;
color: #a3ce67;
padding: 8px 0;
margin: 8px 0;
}
p {
margin: 8px 0;
padding: 0 0 8px 0;
font: normal 12px/1.8em Arial, Helvetica, sans-serif;
}
a {
color: #5e8525;
text-decoration: underline;
}
<div class="main">
<div class="header">
<div class="header_resize">
<div class="menu_nav">
<ul>
<li class="active"><a href="index.html">Home</a></li>
<li><a href="#">About Voicecom</a></li>
<li><a href="#">Marketing Sevices</a></li>
<li><a href="#">IT Management Services</a></li>
<li><a href="#">Contact Us</a></li>
<li><a href="#"> Employement Opportunities </a> </li>
</ul>
</div>
<div class="clr"></div>
<div class="logo"><h1><a href="index.html"><span>Voicecom </span> Technologies<br /><small>Communications Any Time Any Where</small></a></h1></div>
<div class="clr"></div>
</div>
</div>
<div class="hbg">
<div class="hbg_resize">
<img src="images/hbg_img.jpg" width="334" height="223" alt="img" class="hbgimg" />
<h2>Read me first...</h2>
<p><strong>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam ac magna a turpis ornare aliquam id hendrerit nisl.</strong></p>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam ac magna a turpis ornare aliquam id hendrerit nisl. Pellentesque adipiscing blandit mollis. Curabitur varius est et sem rhoncus et pretium massa molestie.</p>
<a href="#"><img src="images/readmore.jpg" width="115" height="33" alt="read more" border="0" /></a>
</div>
</div>
</div>
关于html - 如何在两个标签之间垂直添加空间(附:我的 margin -top 不起作用),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38314520/
今天有小伙伴给我留言问到,try{...}catch(){...}是什么意思?它用来干什么? 简单的说 他们是用来捕获异常的 下面我们通过一个例子来详细讲解下
我正在努力提高网站的可访问性,但我不知道如何在页脚中标记社交媒体链接列表。这些链接指向我在 facecook、twitter 等上的帐户。我不想用 role="navigation" 标记这些链接,因
说现在是 6 点,我有一个 Timer 并在 10 点安排了一个 TimerTask。之后,System DateTime 被其他服务(例如 ntp)调整为 9 点钟。我仍然希望我的 TimerTas
就目前而言,这个问题不适合我们的问答形式。我们希望答案得到事实、引用资料或专业知识的支持,但这个问题可能会引发辩论、争论、投票或扩展讨论。如果您觉得这个问题可以改进并可能重新打开,visit the
我就废话不多说了,大家还是直接看代码吧~ ? 1
Maven系列1 1.什么是Maven? Maven是一个项目管理工具,它包含了一个对象模型。一组标准集合,一个依赖管理系统。和用来运行定义在生命周期阶段中插件目标和逻辑。 核心功能 Mav
我是一名优秀的程序员,十分优秀!