覆盖HTML按钮的布局

时间:2015-04-20 03:02:23

标签: javascript jquery html html5

我希望html按钮看起来像下图。是否可以在不使用任何html元素的情况下更改其布局?

更新:在普通按钮中,只有一个文本节点,但在这种情况下有两个文本节点。

enter image description here

3 个答案:

答案 0 :(得分:1)

不完全确定语句"不使用任何html元素",但你可以使用css(你想要的任何东西)设置样式,请参阅下面的示例

<强>代码:

&#13;
&#13;
.myButton {
  width: 150px;
  height: 120px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  background-color: #6ED7DB;
  color: #fff;
  border: 1px solid #fff;
  font-weight: bold;
  font-size: 2em;
  padding: 10px;
}
&#13;
<button class="myButton">INFO
  <br/>IRO4</button>
&#13;
&#13;
&#13;

Example

答案 1 :(得分:1)

如果您想要更改按钮的样式,则需要使用CSS,如果您希望使用相同的样式更改所有按钮,请使用此选择器(input[type="button"])。

input[type="button"] {
  background:violet;
  padding: 20px;
  border: none;
  border-radius: 3px;
}
<input type="button" value="test" />

答案 2 :(得分:0)

检查下面的示例

<强>代码:

&#13;
&#13;
a {
    text-decoration: none;
}
.btn {
    display: block;
    background: #6ED7DB;
    border-radius: 12px;
    text-align: center;
    text-decoration; none;
    padding: 20px;
    color: #FFF;
    width: 150px;
}
&#13;
<a href="#" class="btn">
    <p>INFO</p>
    <h1>IR04</h1>
</a>
&#13;
&#13;
&#13;

Example