html5とCSS3による装飾サンプル
html5とCSS3のサンプルの実用的なものがたくさんあります。
その一部をランダムに表示しています。 詳しくは サンプルページへどうぞ
-
[ 閉じる ]
htmlソース
<p class="hover-ex4"> <a href="#">サンプルテキスト</a> </p>
CSS
.hover-ex4 a { display: block; width: 160px; position: relative; color: #333; line-height: 1.5; font-size: 20px; font-weight: normal; text-decoration: none; } .hover-ex4 a::before, .hover-ex4 a::after { border-bottom: solid 2px #333; bottom: 0; content: ""; display: block; position: absolute; transition: all 0.3s ease 0s; width: 0%; } .hover-ex4 a::before { left: 50%; } .hover-ex4 a::after { right: 50%; } .hover-ex4 a:hover::before, .hover-ex4 a:hover::after { width: 50%; }
-
>>背景の装飾 - 色のグラデーション (2) 見出しの装飾
背景の装飾 色のグラデーション (2)
※ 背景をベタ塗ではなくグラデーションの指定で塗ります。
red(赤)からyellow(黄色) への斜めグラデーションです。[ 閉じる ]
htmlソース
<h4 class="background-ex2"> 背景の装飾 色のグラデーション (2) </h4>
CSS
.background-ex2 { padding-left: 20px !important; /* 本システムCSSの干渉を変更します */ background-image: linear-gradient(to top right, red 0%, yellow 100%); color: #fff; font-size: 20px !important; font-weight: normal; height: 56px !important; display: flex; align-items: center; }
-
[ 閉じる ]
htmlソース
<p class="hover-ex3"> <a href="#">サンプルテキスト</a> </p>
CSS
.hover-ex3{ height: 32px !important; /* 本システムCSSの干渉を変更します */ width: 200px !important; /* 本システムCSSの干渉を変更します */ display: flex; align-items: center; } .hover-ex3 a{ display: block; width: 100%; height: 100%; padding: 8px 20px; background-color: #efefef; color: #333; font-size: 20px; font-weight: normal; text-decoration-line: none; line-height: 1.6; transition: all .6s; } .hover-ex3 a:hover{ color: #fff; background-color: blue; }