0

我想将文本“HOW IS IT”移到45 像素顶部,我不确定我应该在 CSS 的 policymain 类中添加什么,这是我的 HTML 和 CSS

<style>
.policymain{width:975px; float:left; margin:0px 0 20px 0px; border-bottom:solid 2px #ccc; padding:12px 0 10px 0px}
</style>

<div id="wrapper">
<div class="midbox">
  <div id="content_area">
    <table width="100%" border="0" cellspacing="5" cellpadding="5" align="center">
        <tr> 
          <td>
<div class="policymain"><b><span style="font-size:30px; font-family:'Myriad Pro'; color:#174480;">HOW IS IT</span></b></div>
<br>
<br>
</div>
          </td>
        </tr>
</table>
 </div>
    </div>
4

1 回答 1

3

要将其从当前位置向上移动 45px,您可以使用position: relative; top: -45px;或者position: absolute; margin-top: -45px;如果您希望它从页面顶部向上移动 45px,请使用position: absolute; top: 45px;

于 2013-03-19T23:57:21.403 回答