bootstrap中心链接和面板体中的文本

时间:2016-02-09 21:33:34

标签: html css twitter-bootstrap

我想在bootstrap中居文本,我不知道我的页脚中的内容是否显示为弯曲,这是html代码:

<div class="panel-body">
        <ul> © 2016 
          <a href="/">selfmarket.net</a> /
          <a href="/static/atom.xml">RSS Feed</a> /
          <a href="/static/sitemap.xml">sitemap.xml</a>
        </ul>
      </div>

现场演示是:https://selfmarket.net/

文字需要是我的红线所在: enter image description here

2 个答案:

答案 0 :(得分:1)

如果您没有任何列表元素,请不要使用无序列表(ul)。

<div class="panel-body">
   <div> © 2016 
      <a href="/">selfmarket.net</a> /
      <a href="/static/atom.xml">RSS Feed</a> /
      <a href="/static/sitemap.xml">sitemap.xml</a>
    </div>
</div>

解决您的问题。

答案 1 :(得分:1)

在您的css页面中,您需要将项目与中心对齐:

 strcpy(search_string, argv[1]);

但是,我不确定您使用无序列表标记的原因。