温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

CSS如何利用1像素空缺实现圆角效果

发布时间:2022-02-28 14:51:04 来源:亿速云 阅读:141 作者:小新 栏目:web开发

这篇文章主要介绍了CSS如何利用1像素空缺实现圆角效果,具有一定借鉴价值,感兴趣的朋友可以参考下,希望大家阅读完这篇文章之后大有收获,下面让小编带着大家一起了解一下。

代码如下:


<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>CSS利用1像素空缺实现为类圆角效果</title>
<style type="text/css">
body {padding:20px; font-family:arial; text-align:center;}
p, li {font-size: 12px; line-height:18px;}
h4 {margin-bottom:6px;}
.examplesGoHere {text-align:left; margin:0 auto; }
.letsGiveItAFixedWidthOf200Pixels { width:200px; }
ul {list-style:none;margin-left:0;padding-left:0;margin-top:0;}
ul li {margin-bottom:8px; margin-left:0;padding-left:0; }
.notchedListItems a {
display:block;
border: solid #666;
border-width: 0 1px;
text-decoration: none;
outline:none;
color: #000;
background: #e4e4e4;
}
.notchedListItems a b {
display: block;
position:relative;
top: -1px;
left: 0;
border:solid #666;
border-width:1px 0 0;
font-weight:normal;
}
.notchedListItems a b b {
border-width:0 0 1px;
top: 2px;
padding:1px 6px;
}
.notchedListItems a:hover,
.notchedListItems a:hover b {background:#666;color:white;}
.feature {
border:solid #647aae;
border-width:0 1px;
background:#b0c0e6;
}
.feature div {
position:relative;
top: -1px;
left: 0;
border:solid #647aae;
border-width:1px 0 0;
}
.feature div div {
top: 2px;
border-width:0 0 1px;
padding: .3em .3em .1em;
}
</style>
</head>
<body>
<div class="examplesGoHere letsGiveItAFixedWidthOf200Pixels">
<h4>列表示例:</h4>
<ul class="notchedListItems">
<li><a href="/"><b><b>网站首页</b></b></a></li>
<li><a href="/jscss/"><b><b>网页特效</b></b></a></li>
<li><a href="#"><b><b>软件下载</b></b></a></li>
</ul>
<h4>DIV区域:</h4>
<div class="feature">
<div>
<div>
<p>这个程序虽然不复杂,但拿来就可以用,简单实用。
而对于DELPHI爱好者来说,它具有着很方便的报表模板设计,
可以打印机套打,程序使用了Access数据库和ReportBuilder 7.03控件,
运行于Delphi 7.0&hellip;&hellip;</p>
</div>
</div>
</div>
<br/>
<ul class="notchedListItems">
<li><a href="#"><b><b>效果还行吧!</b></b></a></li>
</ul>
</div>
</body>
</html>

感谢你能够认真阅读完这篇文章,希望小编分享的“CSS如何利用1像素空缺实现圆角效果”这篇文章对大家有帮助,同时也希望大家多多支持亿速云,关注亿速云行业资讯频道,更多相关知识等着你来学习!

向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

css
AI