css这个<a>标签的位置能帮我改下吗?
<html><head><styletype="text/css">body{background-color:#F8A732}#inde{width:100%+8px;...
<html>
<head>
<style type="text/css">
body{background-color:#F8A732}
#inde{
width:100%+8px;
background-image: -webkit-linear-gradient(top, #FEFEFD, #F1F0EF);
weight:100%;
margin:-8px;
}
a{
font:17px "宋体",arial,helvetica,clean,sans-serif;;
border-style:solid;
border-width:0px;
}
a:hover{background-color:ECECEB;border-width:1px;}
</style>
</head>
<body>
<div id="inde">
<img src="http://www.mizhuan.me/logo.png" alt="error">
<a href="http://www.baidu.com">百度</a>
<a href="http://www.google.com">谷歌</a>
</div>
</body>
</html>
我想要把百度和谷歌再向上一点。。。。。。怎么写? 展开
<head>
<style type="text/css">
body{background-color:#F8A732}
#inde{
width:100%+8px;
background-image: -webkit-linear-gradient(top, #FEFEFD, #F1F0EF);
weight:100%;
margin:-8px;
}
a{
font:17px "宋体",arial,helvetica,clean,sans-serif;;
border-style:solid;
border-width:0px;
}
a:hover{background-color:ECECEB;border-width:1px;}
</style>
</head>
<body>
<div id="inde">
<img src="http://www.mizhuan.me/logo.png" alt="error">
<a href="http://www.baidu.com">百度</a>
<a href="http://www.google.com">谷歌</a>
</div>
</body>
</html>
我想要把百度和谷歌再向上一点。。。。。。怎么写? 展开
5个回答
展开全部
先给那两个a标签一个名字如site,然后可以用相对定位.site{ position:relative; bottom:10px}
<a class="site" href="http://www.baidu.com">百度</a>
<a class="site" href="http://www.google.com">谷歌</a>
另外你头部最好加上文档声明,文档不定义DOCTYPE,浏览器将无法获知HTML或XHTML文档的类型,因此会进入混乱模式
<a class="site" href="http://www.baidu.com">百度</a>
<a class="site" href="http://www.google.com">谷歌</a>
另外你头部最好加上文档声明,文档不定义DOCTYPE,浏览器将无法获知HTML或XHTML文档的类型,因此会进入混乱模式
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2018-04-07
展开全部
body{
background-color:#F8A732;
}
#inde{
width:100%+8px;
background-image: -webkit-linear-gradient(top, #FEFEFD, #F1F0EF);
weight:100%;
margin:-8px;
position:relative;
}
a{
font:17px "宋体",arial,helvetica,clean,sans-serif;;
border-style:solid;
border-width:0px;
}
a:hover{background-color:ECECEB;
border-width:1px;
}
.aa{
position:absolute;
bottom:20px;
}
.bb{
position:absolute;
bottom:20px;
right:1330px;
}
</style>
</head>
<body>
<div id="inde">
<img src="http://www.mizhuan.me/logo.png" alt="error">
<a class="aa" href="http://www.baidu.com">百度</a>
<a class="bb" href="http://www.google.com">谷歌</a>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
改<div id="inde">的样式表margin-top用负值
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
把百度和谷歌两个链接再用一个div包起来再去调他的位置就OK了
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询