2012-03-26 49 views
0

我是一個初學者,請有人幫我把這個元素看起來像它下面的那個。文字相對於背景圖像和外層容器的對齊

錯誤:

enter image description here

右:

enter image description here

HTML:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 
<html> 
<head> 
    <title>Cover Plus</title> 
    <script type="text/javascript" src="scripts/jquery-1.4.1.min.js"></script> 
    <script type="text/javascript" src="scripts/ajax.js"></script> 
    <script type="application/x-javascript" src="iui/iui.js"></script> 
    <link type="text/css" href="iui/iui.css" rel="stylesheet" /> 
    <link type="text/css" href="iui/t/default/default-theme.css" rel="stylesheet" /> 
    <link type="text/css" href="styles/iui-panel-list.css" rel="stylesheet" /> 
    <meta name="viewport" id="viewport" content="width=device-width, user-scalable=0, initial-scale=1.0" /> 
    <meta name="apple-mobile-web-app-capable" content="yes" /> 
    <meta name="apple-mobile-web-app-status-bar-style" content="black" /> 
    <link rel="apple-touch-icon" href="img/touch-icon-iphone.png" /> 
    <link rel="apple-touch-icon" sizes="72x72" href="img/touch-icon-ipad.png" /> 
    <link rel="apple-touch-icon" sizes="114x114" href="img/touch-icon-iphone4.png" /> 
    <link rel="apple-touch-startup-image" href="img/startup.png" /> 
</head> 
<body> 

    <div class="toolbar"> 
     <h1 id="pageTitle"></h1> 
     <a id="backButton" href="#"></a> 
    </div> 


    <div id="factorDetailsPanel" title="Details" class="panel"> 
<fieldset><div class="row"><label>Status</label><a href="javascript:GetAllFactors()">Unconfirmed</a></div></fieldset> 
</div> 

</body> 
</html> 

藍色「未經證實」是div「行」內的錨標籤。

(的.row)CSS:

-webkit-user-select: none; 
background-attachment: scroll; 
background-clip: border-box; 
background-color: transparent; 
background-image: none; 
background-origin: padding-box; 
border-bottom-color: black; 
border-bottom-left-radius: 0px; 
border-bottom-right-radius: 0px; 
border-bottom-style: none; 
border-bottom-width: 0px; 
border-left-color: black; 
border-left-style: none; 
border-left-width: 0px; 
border-right-color: black; 
border-right-style: none; 
border-right-width: 0px; 
border-top-color: black; 
border-top-left-radius: 0px; 
border-top-right-radius: 0px; 
border-top-style: none; 
border-top-width: 0px; 
color: black; 
display: block; 
font-family: Helvetica; 
font-size: 16px; 
height: 42px; 
margin-bottom: 0px; 
margin-left: 0px; 
margin-right: 0px; 
margin-top: 0px; 
min-height: 42px; 
overflow-x: visible; 
padding-bottom: 0px; 
padding-left: 0px; 
padding-right: 0px; 
padding-top: 0px; 
position: relative; 
text-align: right; 
width: 323px; 

CSS(.row的>的鏈接):

-webkit-user-select: none; 
background-attachment: scroll; 
background-clip: border-box; 
background-color: transparent; 
background-image: url(.../iui/t/default/listArrow.png); 
background-origin: padding-box; 
border-bottom-color: #385487; 
border-bottom-left-radius: 0px; 
border-bottom-right-radius: 0px; 
border-bottom-style: none; 
border-bottom-width: 0px; 
border-left-color: #385487; 
border-left-style: none; 
border-left-width: 0px; 
border-right-color: #385487; 
border-right-style: none; 
border-right-width: 0px; 
border-top-color: #385487; 
border-top-left-radius: 0px; 
border-top-right-radius: 0px; 
border-top-style: none; 
border-top-width: 0px; 
color: #385487; 
cursor: auto; 
display: block; 
float: right; 
font-family: Helvetica; 
font-size: 16px; 
height: 19px; 
margin-bottom: 0px; 
margin-left: 0px; 
margin-right: 0px; 
margin-top: 0px; 
min-height: 0px; 
overflow-x: hidden; 
overflow-y: hidden; 
padding-bottom: 9px; 
padding-left: 10px; 
padding-right: 0px; 
padding-top: 11px; 
position: static; 
text-align: right; 
text-decoration: none; 
text-overflow: ellipsis; 
width: 88px; 
+0

你可以從'margin-right:1em;'開始,然後根據口味調整。 – 2012-03-26 16:17:09

回答

0

你必須給margin-right.row > a。這樣寫:

.row > a{ 
padding-right:20px; 
} 
+0

嗨,這移動背景箭頭圖像和文字左20像素,所以我仍然在同樣的問題。我需要箭頭來保持它的位置,但文字向左移動。 – sprocket12 2012-03-26 17:38:12

+0

填充左邊給它而不是邊距 – sandeep 2012-03-26 17:39:41

+0

填充右邊:30px對它進行排序。非常感謝。 – sprocket12 2012-03-26 17:46:25