行内css样式怎么设置鼠标滑过的时候背景变色的效果??
例如<divstyle="width:950px;height:35px;border:dashed1px#666;background:#efefff;"><ahref...
例如
<div style="width:950px;height:35px; border:dashed 1px #666; background:#efefff;">
<a href="#" style="width:100px; height:35px; font-size:13px; color:#666; line-height:35px; text-align:center; float:left; background:#eee;">首页</a>
<a href="#" style="width:100px; height:35px; font-size:13px; color:#666; line-height:35px; text-align:center; float:left;">所有分类</a>
<a href="#" style="width:100px; height:35px; font-size:13px; color:#666; line-height:35px; text-align:center; float:left; background:#eee;">分类一</a>
<a href="#" style="width:100px; height:35px; font-size:13px; color:#666; line-height:35px; text-align:center; float:left;">分类一</a>
<a href="#" style="width:100px; height:35px; font-size:13px; color:#666; line-height:35px; text-align:center; float:left; background:#eee;">分类一</a>
<a href="#" style="width:100px; height:35px; font-size:13px; color:#666; line-height:35px; text-align:center; float:left;">分类一</a>
</div>
我想让鼠标移动到首页哪里然后首页那里的背景变成深灰色,怎么写出这样的css样式。(不希望有<script></style>/<style></style>这样类似的样式或者脚本)
全部都写到html标签里面要怎么写出这样的样式??
————求助高手———— 展开
<div style="width:950px;height:35px; border:dashed 1px #666; background:#efefff;">
<a href="#" style="width:100px; height:35px; font-size:13px; color:#666; line-height:35px; text-align:center; float:left; background:#eee;">首页</a>
<a href="#" style="width:100px; height:35px; font-size:13px; color:#666; line-height:35px; text-align:center; float:left;">所有分类</a>
<a href="#" style="width:100px; height:35px; font-size:13px; color:#666; line-height:35px; text-align:center; float:left; background:#eee;">分类一</a>
<a href="#" style="width:100px; height:35px; font-size:13px; color:#666; line-height:35px; text-align:center; float:left;">分类一</a>
<a href="#" style="width:100px; height:35px; font-size:13px; color:#666; line-height:35px; text-align:center; float:left; background:#eee;">分类一</a>
<a href="#" style="width:100px; height:35px; font-size:13px; color:#666; line-height:35px; text-align:center; float:left;">分类一</a>
</div>
我想让鼠标移动到首页哪里然后首页那里的背景变成深灰色,怎么写出这样的css样式。(不希望有<script></style>/<style></style>这样类似的样式或者脚本)
全部都写到html标签里面要怎么写出这样的样式??
————求助高手———— 展开
3个回答
展开全部
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
</head>
<body>
<div style="width:100px; height:35px; background:#CCC; text-align:center; line-height:35px; font-size:12px; cursor:pointer;" onmouseout="this.style.background='#ccc'" onmousemove="this.style.background='#f00'">
<a href="#" target="_blank">首页</a>
</div>
<div style="width:100px; height:35px; background:#CCC; text-align:center; line-height:35px; font-size:12px; cursor:pointer;" onmouseout="this.style.background='#ccc'" onmousemove="this.style.background='#f00'">
<a href="#" target="_blank">首页</a>
</div>
<div style="width:100px; height:35px; background:#CCC; text-align:center; line-height:35px; font-size:12px; cursor:pointer;" onmouseout="this.style.background='#ccc'" onmousemove="this.style.background='#f00'">
<a href="#" target="_blank">首页</a>
</div>
<div style="width:100px; height:35px; background:#CCC; text-align:center; line-height:35px; font-size:12px; cursor:pointer;" onmouseout="this.style.background='#ccc'" onmousemove="this.style.background='#f00'">
<a href="#" target="_blank">首页</a>
</div>
</body>
</html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
</head>
<body>
<div style="width:100px; height:35px; background:#CCC; text-align:center; line-height:35px; font-size:12px; cursor:pointer;" onmouseout="this.style.background='#ccc'" onmousemove="this.style.background='#f00'">
<a href="#" target="_blank">首页</a>
</div>
<div style="width:100px; height:35px; background:#CCC; text-align:center; line-height:35px; font-size:12px; cursor:pointer;" onmouseout="this.style.background='#ccc'" onmousemove="this.style.background='#f00'">
<a href="#" target="_blank">首页</a>
</div>
<div style="width:100px; height:35px; background:#CCC; text-align:center; line-height:35px; font-size:12px; cursor:pointer;" onmouseout="this.style.background='#ccc'" onmousemove="this.style.background='#f00'">
<a href="#" target="_blank">首页</a>
</div>
<div style="width:100px; height:35px; background:#CCC; text-align:center; line-height:35px; font-size:12px; cursor:pointer;" onmouseout="this.style.background='#ccc'" onmousemove="this.style.background='#f00'">
<a href="#" target="_blank">首页</a>
</div>
</body>
</html>
展开全部
<a href="#" style="width:100px; height:35px; font-size:13px; color:#666; line-height:35px; text-align:center; float:left; background:#eee;display:inline-block">首页</a>
给a标签加上display:inline-block;转为内联块元素;这样a标签设置宽度,高度,外边距等都管用了
另外你最好到论坛里搜索一下:什么是块元素什么是内联元素,你就知道为什么了,网址发站内信了,这上面发不了
给a标签加上display:inline-block;转为内联块元素;这样a标签设置宽度,高度,外边距等都管用了
另外你最好到论坛里搜索一下:什么是块元素什么是内联元素,你就知道为什么了,网址发站内信了,这上面发不了
追问
不是,那个我知道
我是想要用css样式做两个效果,a:link和a:hover两个效果,鼠标离开和鼠标滑过时的两个变色效果,但是这些样式要放到标签里面总之别出现/这样的就行了
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
像你这样引用CSS样式只能把原本就很简单的东西复杂化了~
追问
嗯,是比较复杂,但是有特殊用途,在一个代码有限制的地方只能这么用
追答
你一定要这么用的话估计要配合JS用才行
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询