dotted-line

How to make a dotted border on a Border element in Silverlight?

How can I make the bottom border of this Border Silverlight element have a red dotted inside of a red solid line? Border border = new Border(); border.CornerRadius = new CornerRadius(5); border.BorderThickness = new Thickness(0, 0, 0, 1); border.BorderBrush = new SolidColorBrush(Colors.Red); ...

How to draw dotted lines using Quartz on iPhone.

I am new to iPhone development. I am developing an application in which I need to draw dotted lines between a couple of points. I know I have to use CGContextSetLineCap(UIGraphicsGetCurrentContext(), kCGLineCapRound) and also CGContextSetLineDash(UIGraphicsGetCurrentContext(), 0, lengths, LENGTH_OF_ARRAY). But everytime I try this, I can...

Is it normal that performance of “dotted” linestyle is much slower than “dashed” linestyle?

I have an application written in C++ using Qt4.4.3 on Linux. Doing some benchmarking, I create a large number of rectangles and compare the difference of performance of drawing various line styles. The worst performance is the “dotted” line style, the “dashed” line style is much faster. It would seem to me that these should not vary so...

Bugs in IE: dotted border and z-index

Hi, Why does IE (I am on IE7) behave so odd when comes to dotted line and z-index in the examples below? http://quack-project.net/tmp/4/index.php Is there any method to fix this or have I coded the css incorrectly?? first example, <div style=" border-left: 2px solid #000; border-right: 2px solid #000; border-top: 2px sol...

Can't get rid of dotted outline in Firefox links?

Hey. I have a list full of a imgs: <ul> <li><a href="#"><img src="test.png" /></a</li> <li><a href="#"><img src="test.png" /></a</li> <li><a href="#"><img src="test.png" /></a</li> (...) </ul> When I click them in Firefox, there's dotted outline (who the heck invented that and why? so ugly!). I want to get rid of them, but style "ou...

Dotted Line Html Span

I have a menu coded in html here, but i need a dotted line to span between the Names and Prices, How would i go about doing that here? I'm kinda lost haha. You can see it here. http://mystycs.com/menu/menuiframe.htm I know i can use css to do it, but how would i get to it span between those two. Thanks =) ...