no bullets in ul
ul {
list-style-type: none;
}
/* if you want to remove indentation , set padding: 0 and margin: 0 */
/* if you want inline code*/
<ul style="list-style: none;">
<li>...</li>
</ul>
no bullets in ul
ul {
list-style-type: none;
}
/* if you want to remove indentation , set padding: 0 and margin: 0 */
/* if you want inline code*/
<ul style="list-style: none;">
<li>...</li>
</ul>
list without bullets html
ul {
list-style-type: none;
padding: 0;
margin: 0;
}
CSS add bullets without using lists
/* Manually Add Bullets to Elements in HTML Page*/
ul{
position: relative;
}
ul li{
list-style: none;
}
ul li::after{
content: "";
position: absolute;
width: 10px;
height: 10px;
border-radius: 50%;
background-color: #f00;
top: 2px;
left: -8px;
/* + or - top and left according to your style, so that they look perfect*/
}
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us