タグに囲み線を入れたいと思って、Google Chromeで検索しました。
「タグクラウドのカスタマイズ(フォントサイズ統一・枠線・背景色・縦表示)」という希望していた記事があつたので、学習していきます。
同じフォントにする
- /* タグクラウドのフォントサイズを統一 */
- .tagcloud a {
- font-size: 16px !important;
- }
枠線を付ける
- /* タグクラウドに枠線を付ける(+フォントサイズ統一) */
- .tagcloud a {
- font-size: 16px !important;
- border: solid 1px #000080;
- border-radius: 5px;
- display: inline-block;
- padding: 5px;
- margin-bottom: 8px;
- }
マウスオーバー時に背景色を付ける
- /* タグクラウドのマウスオーバー時の背景色 */
- .tagcloud a:hover {
- background-color: #f6bfbc;
- text-decoration: none;
- color: #000;
- }
設定後
プレビューをしてみましたら、「タグ」の枠がきれいに表示されていました