I am using dotted style border in my box like
.box{
width:300px;
height:200px;
border:dotted 1px #f00;
float:left;}
I Want make space between dots of border.
|
feedback
|
|
You cannot do it with pure CSS - the CSS3 spec even has a specific quote about this:
You can, however, use either a border-image or a background image that does the trick. | |||
|
feedback
|
|
See the MDC docs for the available values for
Apart from those choices, there is no way to influence the standard border's style. If the possibilities there are not to your liking, you could use CSS3's | |||||
feedback
|
|
Short answer: You can't. You will have to use | |||
|
feedback
|
|
AFAIK there isn't a way to do this. You could use a dashed border or perhaps increase the width of the border a bit, but just getting more spaced out dots is impossible with CSS. | |||
|
feedback
|