我曾在一個CMS上工作,我想爲不同的按鈕進行特殊編輯。 我創建了一個小examplefile至極看起來是這樣的:在CSS中的背景位置的正確距離
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xml:lang="de" lang="de" xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>demo</title>
<style>
/* --- "breadcrumbs" --- */
ul.path {margin:0;
padding:0;
padding-bottom:19px;
zoom:1;
overflow:hidden;}
ul.path li {list-style-type:none;
list-style-position:outside;
height:28px;
overflow:hidden;
float:left;
margin-right:2px;
font-size:85%;
padding-left:10px;
line-height:19px;
background:url(hor.png) no-repeat left -90px;}
ul.path li.cur {padding-left:10px;
background:url(hor.png) no-repeat left -60px;}
ul.path a {padding:0 15px 0 0;
overflow:hidden;
float:left;
font-weight:normal;
height:26px;
padding-top:2px;
color:#fff;
text-decoration:none;
background:url(hor.png) no-repeat right -90px;}
ul.path li.cur a {color:#FFF;
font-weight:bold;
background:url(hor.png) no-repeat -180px -60px;}
</style>
</head>
<body>
<ul class="path">
<li><a href="#">Webdevelopment</a></li>
<li><a href="#">programming</a></li>
<li><a href="#">database</a></li>
<li><a href="#">modeling</a></li>
<li class="cur"><a href="#">Dezign</a></li>
</ul>
</body>
</html>
我有一個PNG的背景圖像,看起來像這樣 Background images with tiffrent right corners http://img10.imageshack.us/img10/1849/hor.png 結果看起來是這樣的: result http://img21.imageshack.us/img21/774/resultr.png 的目標是獲得一個不同勢右側角球,但我試圖設置一個負面的距離不工作。能否給我一個解釋? 更多有趣的可以somone給我一個解決方法,修復類cur錯誤?
我認爲你應該在http://doctype.com/上提問你的CSS問題。 – Tarik 2009-10-11 09:01:37
*應該問.... – Tarik 2009-10-11 09:08:28