web-dev-qa-db-ja.com

Bootstrapボタンの形状を変更する方法

bootstrap=の角丸ボタンのデフォルトを通常の長方形ボタンに変更するにはどうすればよいですか?ボタンのサイズの色またはフォントのみを変更できます

.btn-lg {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.33;
  border-radius: 6px;
}

.btn-sm,
.btn-xs {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}

あなたの助けに感謝

10
Gavin Niu

ベストプラクティスは、他の場所で使用するイベントでベースCSSを変更しないようにカスタムクラスを作成し、変更を適用することです。

この例では、.btn.btn-custom-lg、.btn.btn-custom-sm、.btn.btn-custom-xsを使用しますが、border-radiusすべてのボタンに対して、ボタンに適用する1つのグローバルクラスを作成できます:.btn-square { border-radius: 0; }

作業例を参照してください。

/*Specific Cases*/

.btn.btn-custom-lg,
.btn.btn-custom-sm,
.btn.btn-custom-xs {
  border-radius: 0;
}
/*Global*/

.btn.btn-square {
  border-radius: 0;
}
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css" rel="stylesheet" />
<div class="container">

  <hr>
  <h3>Specific</h3>
  <div class="btn btn-default btn-lg btn-custom-lg">Button Default</div>
  <div class="btn btn-default btn-sm btn-custom-sm">Button Default</div>
  <div class="btn btn-default btn-xs btn-custom-xs">Button Default</div>
  <hr>
  <h3>Global</h3>
  <div class="btn btn-default btn-lg btn-square">Button Default</div>
  <div class="btn btn-default btn-sm btn-square">Button Default</div>
  <div class="btn btn-default btn-xs btn-square">Button Default</div>
</div>
12
vanburen

GetBootstrap.com で説明されているように、クラスrounded-0を追加します。

<a href="tel:+447447218297" class="btn btn-lg btn-success rounded-0"><img src="">Call Now</a>
6
Saif Islam