web-dev-qa-db-ja.com

CSSの波状の下線

次のように波状の下線を作成できますか? http://i.imgur.com/aiBjQry.png
境界線のみを取得できます:

.err {
  border-bottom:1px solid red;
  display: inline-block;
}
<div>A boy whose name was Peter was <div class="err">woking</div> down the street</div>
16
Amelie P

背景画像なし:

.err {
  display: inline-block;
  position: relative;
}
.err:before {
  content: "~~~~~~~~~~~~";
  font-size: 0.6em;
  font-weight: 700;
  font-family: Times New Roman, Serif;
  color: red;
  width: 100%;
  position: absolute;
  top: 12px;
  left: -1px;
  overflow: hidden;
}
<div>A boy whose name was Peter was
  <div class="err">woking</div> down the street</div>

背景画像あり:

.err {
    display: inline-block;
    position:relative;
    background: url(http://i.imgur.com/HlfA2is.gif) bottom repeat-x;
}
<div>A boy whose name was Peter was <div class="err">woking</div> down the street</div>
34
The Pragmatick

以下は、画像なしで実現できる方法の1つの例です。必要に応じて調整します。

.err {
  border-bottom:2px dotted red;
  display: inline-block;
  position: relative;

}

.err:after {
  content: '';
  width: 100%;
  border-bottom:2px dotted red;
  position: absolute;
  font-size: 16px;
  top: 15px; /* Must be font-size minus one (16px - 1px) */
  left: -2px;
  display: block;
  height: 4px;

  
  }
<div>A boy whose name was Peter was <div class="err">woking</div> down the street</div>
29
Sleek Geek

CSS text-decoration-styleプロパティ。

-webkit-text-decoration-style: wavy;
-moz-text-decoration-style: wavy;
text-decoration-style: wavy;

ただし、 これはFirefoxおよびSafariに限定されます 。代わりに画像の使用を検討する必要があるかもしれません。

13
Richard Blyth

リンクで:after疑似要素を使用して、ウェーブ画像の繰り返しx背景を設定できます。 border-image CSS3プロパティを使用することもできますが、これは 完全にはサポートされていません 古いブラウザの場合

0
flks