Questions tagged [dotted-line]

Dotted line (Optional css element) - gives the border (e.g.) a dotted look

You can customise elements of your table or div to have a dotted-line effect within the classes in your css code in your stylesheet.

For example:

.help {
   cursor: help;
   color: #333;
   border-bottom: 1px dotted #9c0;
   font-style: normal;
   font-family: Georgia, Constantia, "Times New Roman", Times, serif;
}

The above class the content in this div designated with the class help makes it appear with the "help" cursor (the arrow with the question mark), in a color (#333 is a medium gray), gives it a dotted border underneath it all and displays the font as any of a "family" of serif fonts, starting with Georgia.

67 questions
2
votes
2 answers

jqPlot from line to dotted

I have a graph where I show projections for several statistics. The statistics up to this year are certain, but from 2012 and beyond, they are just a projection, and therefore not certain. I want to have a line when the statistics are certain, and…
Are Almaas
  • 1,063
  • 12
  • 26
1
vote
1 answer

Xamarin IOS - Insert a dotted line between 2 UIButtons

I'm Struggling to insert a dotted line between buttons similar to a GridView with buttons. Is there anything predefined in the API given by the IOS for Xamarin that solves this? Thanks in advance
Mitiens
  • 35
  • 4
1
vote
1 answer

Draw dotted polyline on Google Map - Android

I am working on an Android application that uses Google Maps and draws polylines on the map. I wanted to know if there is a way to draw a dotted polyline (similar to the one Google Maps shows when displaying a walking route) and how should I do…
1
vote
1 answer

Objective-C SpriteKit Create dotted line to certain points

I have a certain point at the bottom of the screen . . . when I touch the screen somewhere, I'd like a dotted line to appear between the point, and the point my finger is at. The length and rotation of the line will change based on where my finger…
user4709546
1
vote
2 answers

How do I remove the dotted line on my image button when I click it in firefox?

I'm using this jfiddle. In chrome when I click the image it doesn't produce a dotted line but when I click the image in firefox a dotted line appears. . How can I remove the dotted line? I've tried: #myButton:focus { outline:…
Grammin
  • 11,808
  • 22
  • 80
  • 138
1
vote
0 answers

how can I draw a path with both solid and dotted line in wpf

I am new to wpf. Now I need to draw a image in style, using 'path' with both solid and dotted line like sample image. I know how to draw with solid or dotted line, but have no idea about combine them in a path...