垂直对齐 div 内的 <a> 文本

Posted

技术标签:

【中文标题】垂直对齐 div 内的 <a> 文本【英文标题】:Vertically Align <a> text inside a div 【发布时间】:2015-11-22 07:40:05 【问题描述】:

我在垂直对齐 div 内的文本时遇到问题。

这就是我所拥有的。我需要在蓝色框中居中“下一步”:

@import url(http://fonts.googleapis.com/css?family=Muli);

/*Makes the little side arrow*/
.open 
  position: fixed;
  width: 100px;
  height: 40px;
  left: 50%;
  top: -1000px;
  margin-left: -80px;
  margin-top: -30px;
  border: 1px solid #ccc;
  background-color: #fff;
  border-radius: 6px;
  padding: 10px 30px;
  color: #444;
  transition: all ease-out 0.6s;

.open:hover 
  border: 1px solid #aaa;
  box-shadow: 0 0 8px #ccc inset;
  transition: all ease-out 0.6s;

.tutorial-box 
  position: fixed;
  width: 400px;
  height: 238px;
  top: 75px;
  background-color: #F3F3F3;
  border-radius: 6px;
  box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.4);

.slider-turn p, .tutorial-box h1
  margin-left: 10px;

.tutorial-box:before 
  content: '';
  position: absolute;
  left: -14px;
  top: 28px;
  border-style: solid;
  border-width: 10px 14px 10px 0;
  border-color: rgba(0, 0, 0, 0) #f3f3f3 rgba(0, 0, 0, 0) rgba(0, 0, 0, 0);

.tutorial-box p 
  width: 350px;
  font-size: 16px;
  color: #a8aab2;
  font-weight: 400;
  line-height: 28px;
  float: left;
  margin: 0;

.tutorial-box .bottom 
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  width: 100%;
  bottom: 0;
  position: absolute;

.tutorial-box .bottom .btn-2 
  flex: 3;
  -webkit-flex: 3;
  -ms-flex: 3;
  width: 100%;
  height: 54px;
  background-color: #373942;
  border-bottom-left-radius: 6px;
  display: flex;

.tutorial-box .bottom span 
  flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  line-height: 54px;
  color: #fff;
  margin-left: 25px;
  font-size: 18px;

.next 
  text-decoration: none;
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  flex: 1;
  background-color: #6cb5f3;
  border: 0;
  margin: 0;
  padding: 0;
  text-transform: uppercase;
  color: #fff;
  font-weight: bold;
  border-bottom-right-radius: 6px;
  cursor: pointer;
  transition: all .3s;

.next:hover 
  text-decoration: none;
  background-color: #6BA5D6;
  transition: all .3s;

.next:active 
  text-decoration: none;
  background-color: #5F8AAF;

.slider-tutorial-box 
  width: 350px;
  margin: 0 25px;
  overflow: hidden;

.slider-turn 
  width: 10000px;
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<!-- TUTORIAL -->
<div class="tutorial-box">
  <h1>Welcome</h1>
  <span class="close"></span>
  
  <div class="slider-container">
    <div class="slider-turn">
      <p>
        Here, under the Company tab, is where you will do most of the company managment.<br>
      </p>
    </div>
  </div>

  <div class="bottom">
    <div class="btn-2">
      <span>Step 2/?</span>
    </div>
    <a href="/tutorial/3" class="allowedLink next">Next</a>
  </div>
</div>

请告诉我如何将文本垂直居中到 div 的中心。

非常感谢。如果我不够清楚,请告诉我。

【问题讨论】:

Vertically Align text in a Div 的可能重复项 【参考方案1】:

像这样:

.next position: relative; top: 50%; transform: translateY(-50%);

一个很好的技巧,垂直和水平都可以。

【讨论】:

【参考方案2】:

或者,您也可以在“a”标签周围添加“div”标签。您必须修改“高度”和“宽度”以使其垂直。我会为此使用 px 而不是 '%' 或 'em'。将其添加到他们:

<div style="height: /* modify this */100px; width: /* and this*/20px;">
    <a href="/tutorial/3" class="allowedLink next">Next</a>
</div>

这可能不兼容 AS 跨平台。

【讨论】:

【参考方案3】:

好像你已经为 .tutorial-box .bottom span 做了同样的事情,所以对 .next 做同样的事情

.next
  line-height: 54px;

【讨论】:

【参考方案4】:

最简单也可能是最简单的方法是在您想要的文本之前和之后添加“center”和“/center”标签,并在每个字母之后使用“/br”移动到下一行。这会增加一些体积,但会比其他方法容易得多。

<center>
    'letter'</br>'next letter'</br>'next letter'</br>
</center>

重复字母并中断所有字母

【讨论】:

你为什么写&lt;/br&gt;而不是&lt;br&gt;

以上是关于垂直对齐 div 内的 <a> 文本的主要内容,如果未能解决你的问题,请参考以下文章

将 div 内的图像与响应高度垂直对齐

如何垂直对齐具有动态高度的div内的图像?

HTML textarea 文本区域 外面说明文字垂直居中对齐的问题

如何垂直对齐颜色框中的文本? [复制]

CSS 垂直对齐div内的div

Bootstrap 4垂直对齐列[重复]