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
0
votes
1 answer

Matlab - change dotted line to solid

How do I chage my dotted line in plot??? I know it is done like this plot(x, y, '-') but even if I put it in there I get dotted line naj_cas = 0; uhol_deg = -5; v = 20; g = 9.80665; while uhol_deg < 85 uhol_deg = uhol_deg + 10; uhol_rad =…
Mario LIPCIK
  • 457
  • 2
  • 9
  • 24
0
votes
1 answer

webkit renders last px of border:1px dotted; oddly

in webkit safari and chrome ive found that they render the last px of the css rule border:1px dotted; oddly it kind of combines the last 2 pixels into 1 so you get a black mark at the end of the line ..? has any one else encountered this / got a…
sam
  • 9,486
  • 36
  • 109
  • 160
-1
votes
1 answer

How to remove background grids in gnuplot. ?? I want plain bg and getting dotted rectangular grids

I have already plotted eigenvalue spectrum but want to see it on plain white back ground . Someone please help to remove thode grid lines
-1
votes
2 answers

CSS - Dotted Border Bug?

I am just using a simple CSS code for this: button { border: 1px dotted #bebebe; background: #eeeeee; font-size: 20px; color: black; padding: 7px; border-radius: 4px; } But the dotted border doesn't show up in the left side: What am I doing…
Afonso Matos
  • 75
  • 1
  • 9
-3
votes
1 answer

How create dotted hr with fade effect

Hello how can i create in html and css dotted hr like this on image dotted hr
-3
votes
2 answers

Adding horizontal and vertical dotted lines in android

Please give me code adding vertical dotted lines in a list view.I have tried using creating an xml using shape tag method
Priya R G
  • 543
  • 4
  • 10
  • 21
-5
votes
4 answers

css3 way to create design dashed box

I have this design for a dashed box: what is the best way to create this with css3? I have tried to use the 'border:dashed' - but it's not looking like the design I need. I'm wondering if there is a way to do this with only css without using…
eyal halperin
  • 111
  • 4
  • 11
1 2 3 4
5