赞
踩
去除HTML无序列表黑点和表项对齐
在CSS中加入以下代码:
- ul {
- /* 背景与边框 */
- background-color: #ffffff;
- border: 1px solid #b9b9b9;
- /* 去除黑点 */
- list-style: none;
- /* 消白边 */
- padding-inline-start: 0px;
- }
-
- li {
- /* 背景与边框 */
- background-color: #ffffff;
- border: 1px solid #b9b9b9;
-
- width: 100%;
- }

效果如下:
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。