Reputation:
I'm working on a mobile designing I need to be to represent speaker portion using two rows of dots.Is it possible to design some dot's using html and css ?.I searched for a long time ,but I didn't get a relevant answer.Can any one help me?
I added a picture for better understanding .
Upvotes: 0
Views: 1265
Reputation: 63
I'm inserting Unicode •
which looks like a • into a text portion of my HTML document.
It works with any browser, even if the visitor uses a custom CSS, disables JS, or anything else.
More @ http://character-code.com/arrows-html-codes.php
Upvotes: 4
Reputation: 87191
One way is to use radial gradient, less good browser support though
.dots {
height: 36px;
background-image: -webkit-repeating-radial-gradient(center center, rgba(255,255,255,.4), rgba(255,255,255,.4) 4px, transparent 4px, transparent 100%);
background-image: repeating-radial-gradient(center center, rgba(255,255,255,.4), rgba(255,255,255,.4) 4px, transparent 4px, transparent 100%);
background-size: 12px 12px;
background-color: black;
}
<div class="dots"></div>
Upvotes: -1