Is there a bigger version of 开发者_StackOverflow中文版•
?
• Right now it is this big
- I want it this big without using font sizes or
<li>
You could put it in a <span>
with a bigger font but the same line-height
.
You can also try BLACK CIRCLE ●
●.
I don't know how many platforms that will work on, though.
Easy my friend! Check this:
ul{
list-style-type: none;
margin-left: 0;
padding-left: 0;
}
ul li::before {
content: "● ";
color: #2C92C5;
padding-right: 5px;
}
You can also set the font-size
in CSS higher:
.bullelements{
font-size:2rem;
}
<html>
<head>
</head>
<body>
...<span class="bullelements">•</span>
</body>
</html>
Now you can set the font-size
to your size.
One trick is to make the element bold
<span class="bull-element">•</span> item <br />
<span class="bull-element">•</span> item
<style>
.bull-element {
font-weight: 900;
}
</style>
精彩评论