>웹 프론트엔드 >HTML 튜토리얼 >css+html实现自适应宽度的菜单学习_html/css_WEB-ITnose

css+html实现自适应宽度的菜单学习_html/css_WEB-ITnose

WBOY
WBOY원래의
2016-06-24 11:59:171173검색

本文是利用css和html实现自适应于文本长度菜单。

实现后的效果图,如下:






实现代码如下:


      <title>menu4.html</title>	    <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">    <meta http-equiv="description" content="this is my page">    <meta http-equiv="content-type" content="text/html; charset=UTF-8">        <!--<link rel="stylesheet" type="text/css" href="./styles.css">--><style type="text/css">a{  display: block;  height:38px;  /* width:107px; */  /* line-height: 2; */  line-height: 38px;  text-align: center;  background: url(./c2.jpg) no-repeat 0px 0px;  color:#d84700;  font-size: 14px;  weight:bold;  text-decoration: none;  padding-left: 18px;  float:left;  margin:5px;}a span{  display: block;  background: url(./c2.jpg) no-repeat right 0px;  padding-right: 20px;}a:hover{  background: url(./c2.jpg) no-repeat 0px -38px;}a:hover span{  background: url(./c2.jpg) no-repeat right -38px;}</style>           <p><a href="#"><span>免费注册</span></a>     <a href="#"><span>登入</span></a>     <a href="#"><span>在网上开店</span></a></p>  




























































성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.