如何让这个代码不影响其他css div?(悬赏100分)
发布网友
发布时间:2022-04-21 03:49
我来回答
共6个回答
热心网友
时间:2022-04-21 05:19
在前面应该做了统一定义了吧,定义完单独的链接<a>应该不会改变字体大小啊 如果真的变小了 那你只能在<a>内多加一条font-size了,可以用百分比为单位大致调整到合适就可以。
提点建议楼主代码里的<br>多余啊 把<a>链接添加一个display:block变为块状元素,会自动断行的,<br>已经不被W3C支持了。
热心网友
时间:2022-04-21 06:37
支持一楼的简洁的!请问楼主,你的JAVASCRIPT代码的意思是当鼠标悬停的时候呈现该联结的不同产品图片,我有点不明白的是,效果会不会现两张图片? 也就是说你的用JAVASCRIPT创建的HTML并没有覆盖你的原来那个<div id="imgdiv"><a href="proct1.html"><img width="300" height="300" src="amages/hdsy1.jpg" /></a></div> !谢谢
热心网友
时间:2022-04-21 08:11
这个你把他做成类呗,这样就区分开来了呀,就不会影响别的CSS与DIV
热心网友
时间:2022-04-21 10:03
#txtdiv a:link {
font-size:20pt;
}
#txtdiv a:hover{
font-size:20pt;
}
#txtdiv a:visited{
font-size:20pt;
}
热心网友
时间:2022-04-21 12:11
给你需要的div部分加上id或者class,然后在style部分针对这个id或calss定义css
热心网友
时间:2022-04-21 14:35
<a href="proct2.html" onmouseover="changeImg('amages/hdsy2.jpg',this)">文字文字文字文字</a><br>
◆◆改为 ◆◆
<a class="speciallink" href="proct2.html" onmouseover="changeImg('amages/hdsy2.jpg',this)">文字文字文字文字</a><br>
 ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄
a:link,a:visited {
font-family: "宋体";
font-size: 12px;
color: black;
text-decoration: none;
}
a:hover
{
font-family: "宋体";
font-size: 12px;
color:red;
text-decoration: none;
}
◆◆改为 ◆◆
.speciallink:link,.speciallink:visited {
font-family: "宋体";
font-size: 12px;
color: black;
text-decoration: none;
}
.speciallink:hover
{
font-family: "宋体";
font-size: 12px;
color:red;
text-decoration: none;
}