How to move bullet points in css
문제점: li tag를 사용하여 Bullet이 적용되었는데, 왼쪽으로 치우져져 있었다.
이를 해결하려 css에서 li tag에 padding값을 주었으나, 결과는 Bullet들은 그대로 있고 글만 패딩값이 적용되었다.
li {
padding-left: 20px;
}
해결방법: 모든 li tag에 list-style-position Property를 inside로 지정해주었다.
li {
list-style-position: inside;
}
Author And Source
이 문제에 관하여(How to move bullet points in css), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@koreanhamster/How-to-move-bullet-points-in-css저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)