如何保持相同的填充

时间:2018-07-02 21:25:42

标签: javascript html css

如何保持1,2,3框的大小相同?即使文本开箱即用,也可以,因为它们会更大。

.this-p {
  background-color: #4CAF50;
  border: none;
  color: white;
  padding: 0px 0px;
  padding-bottom: 0px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 15px;
  margin: 20px 50px;
  cursor: pointer;
  line-height: 2;
  border-radius: 0%;
  width: auto -webkit-box-sizing: border-box;
}
<section id="four" class="wrapper style3 special">
  <div class="container">
    <header class="major">
      <h2>hora de abrir a carteira</h2>
      <p>bora espiar ao vivo? ;)</p>
    </header>
    <ul class="actions">
      <p class="this-p"> <br> <span class="this-span"> PLANO BÁSICO </br> </span> 15 minutos </br>
        Janela fechada </br>
        Persiana 3/4 fechada </br>
      </p>
      </a>
      </li>
      <p class="this-p"> <br> <span class="this-span"> PLANO NA MÉDIA </br> </span> 30 minutos </br>
        Janela meia fechada </br>
        Persiana 2/4 fechada </br>
      </p>
      </a>
      </li>
      <p class="this-p"> <br> <span class="this-span"> PLANO TOP </br> </span> 60 minutos </br>
        Janela totalmente aberta </br>
        Persiana aberta </br>
      </p>
      </a>
      </li>
    </ul>
  </div>
</section>

3 boxes

ps:还有,我有什么办法可以删除那些框中的可点击选项?我不知道我是否必须找到父母或其他东西。谢谢。

1 个答案:

答案 0 :(得分:1)

如果希望元素具有相同的宽度,则需要对其进行定义。删除coursor: pointer会删除“可点击”指针。

关键部分

.this-p {
  width: 150px;
  ...
}

摘要

.this-p {
  width: 150px;
  background-color: #4CAF50;
  border: none;
  color: white;
  padding: 0px 0px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 15px;
  margin: 20px 50px;
  line-height: 2;
  border-radius: 0%;
  width: auto -webkit-box-sizing: border-box;
}
<section id="four" class="wrapper style3 special">
  <div class="container">
    <header class="major">
      <h2>hora de abrir a carteira</h2>
      <p>bora espiar ao vivo? ;)</p>
    </header>
    <ul class="actions">
      <p class="this-p"> <span class="this-span"> PLANO BÁSICO </br> </span> 15 minutos </br>
        Janela fechada </br>
        Persiana 3/4 fechada </br>
      </p>
      </a>
      </li>
      <p class="this-p"> <span class="this-span"> PLANO NA MÉDIA </br> </span> 30 minutos </br>
        Janela meia fechada </br>
        Persiana 2/4 fechada </br>
      </p>
      </a>
      </li>
      <p class="this-p"> <span class="this-span"> PLANO TOP </br> </span> 60 minutos </br>
        Janela totalmente aberta </br>
        Persiana aberta </br>
      </p>
      </a>
      </li>
    </ul>
  </div>
</section>