I am trying to increase the sizes of the bullet operator using font-size
but it turned out that it is becoming square-ish instead of circle.
Can anyone suggest:
- Why is it happened? Is it possible to increase the sizes of unicode character while maintaining the shape?
I replicate the problem with the following snippets:
.first {
width:30%;
min-height: 40px;
background-color: grey;
text-align: center;
}
.first:after {
content: "2219";
font-size:70px;
}
<!DOCTYPE html>
<html>
<head>
<script src="https://code.jquery.com/jquery.min.js"></script>
<link href="https://netdna.bootstrapcdn.com/twitter-bootstrap/2.3.2/css/bootstrap-combined.min.css" rel="stylesheet" type="text/css" />
<script src="https://netdna.bootstrapcdn.com/twitter-bootstrap/2.3.2/js/bootstrap.min.js"></script>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>JS Bin</title>
</head>
<body>
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class="first">
<p>This is test</p>
</div>
</div>
</div>
</div>
</body>
</html>
2
Answers
The character you may be looking for is
Look in the hex column, this looks like a useful reference site.
http://www.ascii.cl/htmlcodes.htm
the type of font can also affect this character..to illustrate ,I use
monospace
font and got a rounded circlesnippet here