How to control size of list-style-type disc in CSS?

后端 未结 11 1309
暗喜
暗喜 2020-12-23 17:24

My HTML first:

11条回答
  •  爱一瞬间的悲伤
    2020-12-23 17:35

    try to use diffrent font-size for li and a

    .farParentDiv ul li {
       list-style-type: disc;
       font-size:20px;
    }
    
    .farParentDiv ul li a {
       font-size:10px;
    }
    

    this saved me from using images

提交回复
热议问题