使按钮保持HTML对齐

时间:2018-11-08 09:14:06

标签: html angular

每次我按下Button 1时,Button 2Button 3都会降到Button 1以下(与Button 2相同)。 Here is a working snippet

我希望这样的事情发生(每次我按下新按钮时,新文本都会覆盖以前的文本,并保持对齐)。

I want something like this to happen

为了实现自己的目标,我需要更改什么?感谢您的时间!

4 个答案:

答案 0 :(得分:1)

像这样构造您的html。 enter image description here

将文本放置在每个按钮的容器元素内。

将容器元素显示设置为内联块

答案 1 :(得分:1)

这是给您的代码:

function openCity(evt, cityName) {
  var i, tabcontent, tablinks;
  tabcontent = document.getElementsByClassName("tabcontent");
  for (i = 0; i < tabcontent.length; i++) {
    tabcontent[i].style.display = "none";
  }
  tablinks = document.getElementsByClassName("tablinks");
  for (i = 0; i < tablinks.length; i++) {
    tablinks[i].className = tablinks[i].className.replace(" active", "");
  }
  document.getElementById(cityName).style.display = "block";
  evt.currentTarget.className += " active";
}
body {
  font-family: Arial;
}

.tab {
  overflow: hidden;
}

.tab button {
  cursor: pointer;
  padding: 6px 10px;
  transition: 0.3s;
  font-size: 17px;
}

.tabcontent {
  display: none;
  padding: 6px 12px;
  border-top: none;
}
<meta name="viewport" content="width=device-width, initial-scale=1">
<div class="tab">
  <button class="tablinks" onclick="openCity(event, 'London')">London</button>
  <button class="tablinks" onclick="openCity(event, 'Paris')">Paris</button>
  <button class="tablinks" onclick="openCity(event, 'Tokyo')">Tokyo</button>
</div>

<div id="London" class="tabcontent">
  <h3>London</h3>
  <p>London is the capital city of England.</p>
</div>

<div id="Paris" class="tabcontent">
  <h3>Paris</h3>
  <p>Paris is the capital of France.</p>
</div>

<div id="Tokyo" class="tabcontent">
  <h3>Tokyo</h3>
  <p>Tokyo is the capital of Japan.</p>
</div>

答案 2 :(得分:1)

您需要设置包含要显示的文本的div:inline-block;

div {
  display: inline-block
}

答案 3 :(得分:1)

Here是更新的代码段。在添加按钮之后,我对html进行了重组,并在最后添加了文本div。这样,按钮可保持在相同位置。为了替换文本,我使用了一个变量,该变量在单击按钮时更改,并且该值在html上更新。

希望这是您想要实现的。