当前位置: 代码迷 >> HTML/CSS >> css怎么在一个工具条中定义向左(或向右)靠的button
  详细解决方案

css怎么在一个工具条中定义向左(或向右)靠的button

热度:157   发布时间:2012-11-22 00:16:41.0
css如何在一个工具条中定义向左(或向右)靠的button

1.在一个<header></header>中定义:

<div class="about"><a href="javascript:void(0)">关于我们<span></span></a></div>


2.然后定义css

 .header .about{right: auto; left: 0;}


这样便可得到向右靠的button


  相关解决方案