scss アイコン付きリストナビ

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了scss アイコン付きリストナビ相关的知识,希望对你有一定的参考价值。

nav.footer_nav
  ul
    li
      a(href='#') トップページ
    li
      a(href='#') ページ
    li
      a(href='#') ページ
    li
      a(href='#') ページ
    li
      a(href='#') ページ
.footer_bottom {
	padding: 60px 0;
	text-align: center;
	.footer_nav {
		display: inline-block;
		margin-bottom: 10px;
		ul {
			display: flex;
			justify-content: center;
		}
		li {
			margin: 0 15px;
		}
		a {
			position: relative;
			font-size: 1.6rem;
			padding-left: 10px;
			&::before {
				position: absolute;
				top: 50%;
				left: 0;
				content: "";
				width: 4px;
				height: 4px;
				margin-top: -3px;
				border-top: 1px solid $color_text;
				border-right: 1px solid $color_text;
				transform: rotate( 45deg ) skew(7deg, 7deg);
			}
			&:hover {
				text-decoration: underline;
			}
		}
	}
}

以上是关于scss アイコン付きリストナビ的主要内容,如果未能解决你的问题,请参考以下文章

scss アイコン拟似要素

scss PDFアイコン追加らく【楽に】

css 二重丸アイコン

css 三角アイコン

css 二重丸アイコン

python wxPython的にアイコンを付ける