a href 链接在 p 标签中停止工作?当我将它们放在 H3 标记中时它们可以工作,但是布局/样式表格式似乎消失了。这让我想知道它是否与网站 css 或 xhtml 有关。
代码片段 - 链接不起作用:
<div id="written_content">
<div id="header_image"></div>
<h1>How we do it</h1>
<div id="casestudies">
<p><a href="pdf/3Rivers FCU Case Study.pdf" target="_blank">3Rivers Federal Credit Union</a>
<br />
<br />
Momentum developed a three-pronged, integrated approach with 3Rivers to maximize market potential and increase existing branch productivity.</p>
此代码段允许链接工作,但格式混乱:
<div id="written_content">
<div id="header_image"></div>
<h1>How we do it</h1>
<div id="casestudies">
<h2><p><a href="pdf/3Rivers FCU Case Study.pdf" target="_blank">3Rivers Federal Credit Union</a></p><h2>
<p>Momentum developed a three-pronged, integrated approach with 3Rivers to maximize market potential and increase existing branch productivity.</p>
这是我的CSS:
#written_content {
width: 500px;
float: left;
height: auto;
margin-top: 85px;
margin-left: 47px;
}
h1 {
font-family: Arial, Helvetica, sans-serif;
font-size: 18px;
font-weight: bold;
color: #333;
float: left;
margin-top: 0px;
margin-right: 8px;
margin-bottom: 0px;
margin-left: 0px;
}
h2 {
font-family: Arial, Helvetica, sans-serif;
font-size: 18px;
font-weight: lighter;
float: left;
margin-right: 0px;
margin-left: 0px;
color: #999;
margin-top: 0px;
margin-bottom: 0px;
font-style: normal;
}
#written_content p {
font-family: Arial, Helvetica, sans-serif;
font-size: 12px;
font-weight: normal;
width: 465px;
margin-top: 60px;
margin-right: 0px;
margin-bottom: 0px;
margin-left: 0px;
text-align: justify;
color: #999;
line-height: 17px;
}
#casestudies{
font-family: Arial, Helvetica, sans-serif;
font-size: 12px;
font-weight: normal;
width: 500px;
margin-top: 25px;
margin-right: 0px;
margin-bottom: 0px;
margin-left: 0px;
text-align: justify;
color: #999;
line-height: 17px;
这是我认为我会遇到的最后一个问题。有谁知道为什么会出现这个问题?