ameeeee
4/14/2020 - 12:44 AM

list-style-type に文字列追加

list-style-type に文字列追加


<div class="project">
	<ul class="c-list-mark">
		<li class="c-list-mark__item">リスト</li>
		<li class="c-list-mark__item">リスト</li>
		<li class="c-list-mark__item">リストリストリストリストリストリストリストリストリストリストリストリストリストリストリストリストリストリストリストリストリストリスト</li>
		<li class="c-list-mark__item">リスト</li>
	</ul>
</div>

list-style-type に文字列追加

A Pen by anonie on CodePen.

License.

body { background: #eee; }
.flex { display: flex; }
.inner {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}
.inner { background: #fff; margin: 3rem auto; padding: 3rem 0;} // 視認性用
 
.item01 {  // 視認性用
	// border: 3px solid #aaa;
}
.item02 {  // 視認性用
	border: 3px solid #ccc;
}
$breakpoints: (
	sp: "only screen and (max-width: 559px)",
	tb: "only screen and (max-width: 959px)",
	pc: "only screen and (min-width: 960px)"
);
@mixin media($breakpoint) {
  @media #{map-get($breakpoints, $breakpoint)} {
    @content;
  }
}
.pc {
  @include media(sp) {
    display: none !important;
  }
}
.sp {
  @include media(pc) {
    display: none !important;
  }
}
/// 以下モジュール ---------------------------------
.project {
	width: 300px; // 視認用
}
.project {
	& .c-list-mark {	// ul
		list-style-type: none;
		margin-left: 1em;
		&__item {	// li
			&::before {
				content: "※";
				margin-left: -1em;
			}
		}
	}
}