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.

link|improve this question

feedback

4 Answers

up vote 9 down vote accepted

You cannot do it with pure CSS - the CSS3 spec even has a specific quote about this:

Note: There is no control over the spacing of the dots and dashes, nor over the length of the dashes. Implementations are encouraged to choose a spacing that makes the corners symmetrical.

You can, however, use either a border-image or a background image that does the trick.

link|improve this answer
feedback

See the MDC docs for the available values for border-style:

  • none : No border, sets width to 0. This is the default value.
  • hidden : Same as 'none', except in terms of border conflict resolution for table elements.
  • dashed : Series of short dashes or line segments.
  • dotted : Series of dots. double : Two straight lines that add up to the pixel amount defined as border-width.
  • groove : Carved effect.
  • inset : Makes the box appear embedded.
  • outset : Opposite of 'inset'. Makes the box appear 3D (embossed).
  • ridge : Opposite of 'groove'. The border appears 3D (coming out).
  • solid : Single, straight, solid line.

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 border-image but note that browser support for this is still very spotty.

link|improve this answer
thanks pekka, that mean i can't use border property ... so i have to use image for it. – kc rajput Jun 6 '11 at 10:30
@kc if none of the border styles is to your liking, yes. – Pekka Jun 6 '11 at 10:47
feedback

Short answer: You can't.

You will have to use border-image property and a few images.

link|improve this answer
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.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.