繁体   English   中英

如何将帖子标题居中?

[英]How do I center the post title?

如何以标题“ BOASISH正在建设中”为中心,但保留作者:Kyle Boas·关注:Twitter,Google +,2014年9月4日。 我的网站是http://boasish.com ,如果出现错误页面,请使用http://orangina.asmallorange.com/~boasishc/作为网址,而不是http://boasish.com

<h2 class="entry-title" itemprop="headline"><a href="http://orangina.asmallorange.com/~boasishc/site-under-construction/" rel="bookmark">Boasish is Under Construction</a></h2>
    <a href="http://orangina.asmallorange.com/~boasishc/site-under-construction/" rel="bookmark">Boasish is Under Construction</a>
</h2>

您可以将此代码添加到您的css中

.entry-header h2{
   text-align: center;
   width: 100%;
}

或只是添加此代码

.entry-header{
   text-align: center;
}

header .entry-meta{
   text-align: left;
}

在此处输入图片说明

更改

<h2 class="entry-title" itemprop="headline">

<h2 class="entry-title" itemprop="headline" style="text-align: center;">

您可以在style属性中添加text-align: centerwidth: 100%

<h2 class="entry-title" style="text-align: center; width: 100%;" itemprop="headline"><a href="http://orangina.asmallorange.com/~boasishc/site-under-construction/" rel="bookmark">Boasish is Under Construction</a></h2>
    <a href="http://orangina.asmallorange.com/~boasishc/site-under-construction/" rel="bookmark">Boasish is Under Construction</a>
</h2>

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM