css 样式,怎样控制下划线长度 30
<html><head><metacharset="utf-8"><title>外婆家私房菜:账户管理</title><styletype="text/css">#tit...
<html>
<head>
<meta charset="utf-8">
<title>外婆家私房菜:账户管理</title>
<style type="text/css">
#title {
margin: 0px;
width: 100%;
height: 45px;
background-color: #d9d9d9;
}
#text {
margin: 0px;
line-height: 40px;
font-size: 22px;
font-weight: 700;
font-family: Microsoft YaHei, Arial;
color: #444;
text-shadow: 1px 1px 0px rgba(255, 255, 255, 0.5);
}
body {
margin: 0px;
}
.row {
border-bottom: 3px solid #999999 ;
height: 20px;
}
input[type=checkbox ] {
transform: scale(1.5);
-webkit-transform: scale(1.5);
}
</style>
</head>
<body>
<div id="title">
<center><span id="text">外婆家私房菜:账户管理</span></center>
</div>
<table width="100%" border="0" cellpadding="10" cellspacing="0" id="table">
<tr class="row">
<th width="20%" align="left" valign="middle" class="row"><form>
<input type="checkbox" name="ol">
</form>
</th>
<th width="30%" align="left" class="row">序号</th>
<th width="20%" align="left" class="row">帐号名</th>
<th width="30%" align="left" class="row">类型</th>
</tr>
</table>
</body>
</html> 展开
<head>
<meta charset="utf-8">
<title>外婆家私房菜:账户管理</title>
<style type="text/css">
#title {
margin: 0px;
width: 100%;
height: 45px;
background-color: #d9d9d9;
}
#text {
margin: 0px;
line-height: 40px;
font-size: 22px;
font-weight: 700;
font-family: Microsoft YaHei, Arial;
color: #444;
text-shadow: 1px 1px 0px rgba(255, 255, 255, 0.5);
}
body {
margin: 0px;
}
.row {
border-bottom: 3px solid #999999 ;
height: 20px;
}
input[type=checkbox ] {
transform: scale(1.5);
-webkit-transform: scale(1.5);
}
</style>
</head>
<body>
<div id="title">
<center><span id="text">外婆家私房菜:账户管理</span></center>
</div>
<table width="100%" border="0" cellpadding="10" cellspacing="0" id="table">
<tr class="row">
<th width="20%" align="left" valign="middle" class="row"><form>
<input type="checkbox" name="ol">
</form>
</th>
<th width="30%" align="left" class="row">序号</th>
<th width="20%" align="left" class="row">帐号名</th>
<th width="30%" align="left" class="row">类型</th>
</tr>
</table>
</body>
</html> 展开
4个回答
展开全部
加div,把有下划线的那几个字放在<div class=“有下划线的样式”>这里</div>,
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
引用du瓶邪的回答:
静态下划线
a#example4a {
text-decoration: none;
background: url(’/pic/20069/200696144112132.gif’) repeat-x 100% 100%;
white-space: nowrap;
padding-bottom: 10px
}
浮动花朵效果下划线
a#example4b {
text-decoration: none;
white-space: nowrap;
padding-bottom: 10px;
}
a#example4b:hover {
background: url(’/pic/20069/200696144112132.gif’) repeat-x 100% 100%;
}
静态箭头下划线
a#example1a {
text-decoration: none;
background: url(’/pic/20069/200696144112997.gif’) repeat-x 100% 100%;
white-space: nowrap;
padding-bottom: 5px
}
浮动动画箭头下划线 (这里箭头会出现滚动,不过这一滚动图片的效果只在部分浏览器中看得到)
a#example2b {
text-decoration: none;
white-space: nowrap;
padding-bottom: 5px;
}
a#example2b:hover {
background: url(’/pic/20069/200696144113188.gif’) repeat-x 100% 100%;
}
实现链接的虚线下划线效果
a {
color:#3399FF;
font-weight:Normal;
text-decoration:none;
}
a:hover {
color:#4499EE;
text-decoration:none;
border-bottom: 1px #0099CC dotted
}
a{}控制连接的效果 a:hover{}控制鼠标移上去的效果。
静态下划线
a#example4a {
text-decoration: none;
background: url(’/pic/20069/200696144112132.gif’) repeat-x 100% 100%;
white-space: nowrap;
padding-bottom: 10px
}
浮动花朵效果下划线
a#example4b {
text-decoration: none;
white-space: nowrap;
padding-bottom: 10px;
}
a#example4b:hover {
background: url(’/pic/20069/200696144112132.gif’) repeat-x 100% 100%;
}
静态箭头下划线
a#example1a {
text-decoration: none;
background: url(’/pic/20069/200696144112997.gif’) repeat-x 100% 100%;
white-space: nowrap;
padding-bottom: 5px
}
浮动动画箭头下划线 (这里箭头会出现滚动,不过这一滚动图片的效果只在部分浏览器中看得到)
a#example2b {
text-decoration: none;
white-space: nowrap;
padding-bottom: 5px;
}
a#example2b:hover {
background: url(’/pic/20069/200696144113188.gif’) repeat-x 100% 100%;
}
实现链接的虚线下划线效果
a {
color:#3399FF;
font-weight:Normal;
text-decoration:none;
}
a:hover {
color:#4499EE;
text-decoration:none;
border-bottom: 1px #0099CC dotted
}
a{}控制连接的效果 a:hover{}控制鼠标移上去的效果。
展开全部
你说的啥子东西!
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
静态下划线
a#example4a {
text-decoration: none;
background: url(’/pic/20069/200696144112132.gif’) repeat-x 100% 100%;
white-space: nowrap;
padding-bottom: 10px
}
浮动花朵效果下划线
a#example4b {
text-decoration: none;
white-space: nowrap;
padding-bottom: 10px;
}
a#example4b:hover {
background: url(’/pic/20069/200696144112132.gif’) repeat-x 100% 100%;
}
静态箭头下划线
a#example1a {
text-decoration: none;
background: url(’/pic/20069/200696144112997.gif’) repeat-x 100% 100%;
white-space: nowrap;
padding-bottom: 5px
}
浮动动画箭头下划线 (这里箭头会出现滚动,不过这一滚动图片的效果只在部分浏览器中看得到)
a#example2b {
text-decoration: none;
white-space: nowrap;
padding-bottom: 5px;
}
a#example2b:hover {
background: url(’/pic/20069/200696144113188.gif’) repeat-x 100% 100%;
}
实现链接的虚线下划线效果
a {
color:#3399FF;
font-weight:Normal;
text-decoration:none;
}
a:hover {
color:#4499EE;
text-decoration:none;
border-bottom: 1px #0099CC dotted
}
a{}控制连接的效果 a:hover{}控制鼠标移上去的效果。
a#example4a {
text-decoration: none;
background: url(’/pic/20069/200696144112132.gif’) repeat-x 100% 100%;
white-space: nowrap;
padding-bottom: 10px
}
浮动花朵效果下划线
a#example4b {
text-decoration: none;
white-space: nowrap;
padding-bottom: 10px;
}
a#example4b:hover {
background: url(’/pic/20069/200696144112132.gif’) repeat-x 100% 100%;
}
静态箭头下划线
a#example1a {
text-decoration: none;
background: url(’/pic/20069/200696144112997.gif’) repeat-x 100% 100%;
white-space: nowrap;
padding-bottom: 5px
}
浮动动画箭头下划线 (这里箭头会出现滚动,不过这一滚动图片的效果只在部分浏览器中看得到)
a#example2b {
text-decoration: none;
white-space: nowrap;
padding-bottom: 5px;
}
a#example2b:hover {
background: url(’/pic/20069/200696144113188.gif’) repeat-x 100% 100%;
}
实现链接的虚线下划线效果
a {
color:#3399FF;
font-weight:Normal;
text-decoration:none;
}
a:hover {
color:#4499EE;
text-decoration:none;
border-bottom: 1px #0099CC dotted
}
a{}控制连接的效果 a:hover{}控制鼠标移上去的效果。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询