您好,登錄后才能下訂單哦!
本篇內容主要講解“CSS怎么利用1像素空缺實現圓角效果”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“CSS怎么利用1像素空缺實現圓角效果”吧!
這里基于CSS利用1像素空缺來實現圓角效果,雖然和真正的圓角有一些細小的差別,但畢竟是用純CSS代碼實現的,執行效率高,沒有用到圖像資源,而且擴展性好,代碼復用性高,演示中包括一個列表和一個DIV區域。
代碼如下:
<!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……</p>
</div>
</div>
</div>
<br/>
<ul class="notchedListItems">
<li><a href="#"><b><b>效果還行吧!</b></b></a></li>
</ul>
</div>
</body>
</html>
到此,相信大家對“CSS怎么利用1像素空缺實現圓角效果”有了更深的了解,不妨來實際操作一番吧!這里是億速云網站,更多相關內容可以進入相關頻道進行查詢,關注我們,繼續學習!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。