div+css实现自适应宽度按钮

2022-04-15 0 938

先来看张图片:

       原理就是通过背景的左对齐和右对齐用A标签和span标签组合出一个完整的圆角矩形。再通过hover标签去滑动图片。而你只需要一张图片:


ok,看看代码吧。

CSS:


复制代码 代码如下:

*{margin:0; padding:0;}  

body{padding:10px; font-size:12px;}  

h1{margin:0; padding:10px 0; font-size:14px; font-weight:bold;}  

a{background:url(1.gif) left 0; color:#fff; text-decoration:none; height:30px; float:left; cursor:hand; margin:0 5px 0 0;}  

a:hover{background:url(1.gif) left -30px;height:30px;}  

a span{background:url(1.gif) right 0; padding:7px 8px 7px 0; margin:0 0 0 8px; float:left; height:16px;}  

a:hover span{background:url(1.gif) right -30px; color:#000; padding:7px 8px 7px 0; margin:0 0 0 8px; height:16px; }  

HTML:


复制代码 代码如下:

<body>  

<h1><strong>CSS自适应宽度圆角按钮 @5key.net</strong></h1>  

<a href=”#”><span>首页</span></a>  

<a href=”#”><span>不是首页</span></a>  

<a href=”#”><span>他也许是首页</span></a>  

<a href=”#”><span>但他一定不是首页</span></a>  

<a href=”#”><span>好了,就这样把。别扯了~</span></a>  

</body> 

演示:

<!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=gb2312″ /> <title>CSS自适应宽度按钮</title> <style> *{margin:0; padding:0;} body{padding:10px; font-size:12px;} h1{margin:0; padding:10px 0; font-size:14px; font-weight:bold;} a{background:url(/upload/20071122231110605.gif) left 0; color:#fff; text-decoration:none; height:30px; float:left; cursor:hand; margin:0 5px 0 0;} a:hover{background:url(/upload/20071122231110605.gif) left -30px;height:30px;} a span{background:url(/upload/20071122231110605.gif) right 0; padding:7px 8px 7px 0; margin:0 0 0 8px; float:left; height:16px;} a:hover span{background:url(/upload/20071122231110605.gif) right -30px; color:#000; padding:7px 8px 7px 0; margin:0 0 0 8px; height:16px; } </style> </head> <body> <h1><strong>CSS自适应宽度圆角按钮</strong></h1> <a href=”https://www.jb51.net” target=”_blank”><span>首页</span></a> <a href=”https://www.jb51.net” target=”_blank”><span>不是首页</span></a> <a href=”https://www.jb51.net” target=”_blank”><span>他也许是首页</span></a> <a href=”https://www.jb51.net” target=”_blank”><span>但他一定不是首页</span></a> <a href=”https://www.jb51.net” target=”_blank”><span>好了,就这样把。别扯了~</span></a> </body> </html>

[Ctrl+A 全选 注:引入外部Js需再刷新一下页面才能执行]

免责声明:
1、本网站所有发布的源码、软件和资料均为收集各大资源网站整理而来;仅限用于学习和研究目的,您必须在下载后的24个小时之内,从您的电脑中彻底删除上述内容。 不得使用于非法商业用途,不得违反国家法律。否则后果自负!

2、本站信息来自网络,版权争议与本站无关。一切关于该资源商业行为与www.niceym.com无关。
如果您喜欢该程序,请支持正版源码、软件,购买注册,得到更好的正版服务。
如有侵犯你版权的,请邮件与我们联系处理(邮箱:skknet@qq.com),本站将立即改正。

NICE源码网 CSS/HTML div+css实现自适应宽度按钮 https://www.niceym.com/16838.html