기본 아이디어는 다음과 같습니다
ul 또는 li 태그 아래에 세 개의 li 목록을 만듭니다
<ul> <li>item 1</li> <li>item 2</li> <li>item 3</li> </ul>
li 태그 위치를 상대적으로 지정합니다. 왼쪽 패딩을 추가하세요
li { height: 40px; padding-left: 20px; display: flex; align-items: center; position: relative; }
li::before CSS 속성을 사용하고 주위에 왼쪽 테두리를 만듭니다.
li::before { content: ''; position: absolute; left: -16px; border-left: 2px solid black; height: 100%; width: 1px; }
이제 li::after CSS 속성을 사용하고 주위에 세 개의 원을 만듭니다
li::after { content: ''; display: inline-block; height: 10px; width: 10px; border-radius: 50%; background-color: blue; margin-left: -80px; }
이제 마지막 목록과 첫 번째 목록에서 줄을 자릅니다
li:first-child:before { top: 20px; } li:last-child:before { top: -20px; }
결과:
전체 코드:
html:
<ul> <li>item 1</li> <li>item 2</li> <li>item 3</li> </ul>
css:
li { height: 40px; padding-left: 20px; display: flex; align-items: center; position: relative; } li::before { content: ''; position: absolute; left: -16px; border-left: 2px solid black; height: 100%; width: 1px; } li::after { content: ''; display: inline-block; height: 10px; width: 10px; border-radius: 50%; background-color: blue; margin-left: -80px; } li:first-child:before { top: 20px; } li:last-child:before { top: -20px; }
위 내용은 CSS로 연결된 글머리 기호를 만드는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!