我有一个简单的菜单栏,只想要文本和超链接之间的水平间距。 这是我的代码:
<div id="rectangle">
<p class="x">Home Page
<a href="hello">Home</a> <a href="user">user</a></p>
</div>
在样式字段中,我有
p.x {
color: white;
font:25px arial,sans-serif;
position:relative;
left:20px;
}
#rectangle {
width: 100%;
height: 70px;
background: deepskyblue;
position: fixed;
top: 0;
left: 0;
bottom: 20;
}
我希望在“主页”和“主页”/“用户”之间留出空间。
如果有人能帮助我,我感激不尽。