Quantcast
Channel: CSSタグが付けられた新着記事 - Qiita
Viewing all articles
Browse latest Browse all 8577

text-shadowを使用して文字を肉付け

$
0
0

HTMLは以下の通り

<div id ="mondai">
        <p id="char-1" class="text default">a</p>
        <p id="char-2" class="text default">b</p>
        <p id="char-3" class="text default">c</p>
      </div><!--/.mondai-->  

スクリーンショット 2020-09-03 20.32.14.png

これに対して、CSSのtext-shadowを使用して文字を肉付けする。

.text.default {
  color: #f3f3f3;
  text-shadow: 1px 1px 0 #000,
              -1px 1px 0 #000,
               1px -1px 0 #000,
              -1px -1px 0 #000;
}

スクリーンショット 2020-09-03 20.32.25.png

以上


Viewing all articles
Browse latest Browse all 8577

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>