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
57
votes
5 answers

How to create a dotted border around a box in flutter?

I am building a list of boxes layouts in my app using flutter. I want dotted border around the box. I have used card widget to create the boxes. But, how can I get dotted border around the boxes?
Juthi Sarker Aka
  • 2,217
  • 6
  • 16
  • 22
27
votes
5 answers

How can I remove the dotted lines on a SELECT/OPTION dropdown control in Firefox?

In Chrome and other browsers my dropdown looks fine: However, in Firefox it has unwanted dotted lines: I have successfully removed the unwanted Firefox dotted lines for buttons and input elements with these CSS statements: button::-moz-focus-inner…
Edward Tanguay
  • 189,012
  • 314
  • 712
  • 1,047
9
votes
5 answers

HTML Canvas - Dotted stroke around circle

I do know there is no native support for doing dotted stroke lines rendered on a canvas, but I have seen the clever ways people have been able to generate support for this. What I am wondering is if there is any way to translate this to allow for…
Chris
  • 1,101
  • 3
  • 17
  • 33
9
votes
2 answers

Draw dotted lines using Quartz on iPhone

I am developing an application in which I need to draw dotted lines between a couple of points. I tried CGContextSetLineCap(UIGraphicsGetCurrentContext(), kCGLineCapRound) CGContextSetLineDash(UIGraphicsGetCurrentContext(), 0, lengths,…
kayvee
  • 93
  • 1
  • 6
9
votes
7 answers

Line of dots between items

I am building a restaurant web site and menu. I need to get a "line of dots" between the menu item and the price. I need to get it without writing dots manually one by one. This feature should work automatically. Is it possible to create this by…
Strobo
  • 91
  • 1
  • 1
  • 2
8
votes
2 answers

Dotted lines in Chrome

For some reason, when using a dotted border style to make a line, Chrome renders the ends as double dots, which looks awful especially on short lines: .text { border-bottom: 2px dotted #000; } Hi
riv
  • 6,846
  • 2
  • 34
  • 63
8
votes
1 answer

Custom Span Underline Text with Dotted line Android

I was tiring to underline a specific word in the text with a dotted or dashed line with and also Clickable Span. I haven't found a solution can someone help me, please. SpannableStringBuilder sb = new SpannableStringBuilder(text); List listmot =…
7
votes
2 answers

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,…
Edward Tanguay
  • 189,012
  • 314
  • 712
  • 1,047
6
votes
1 answer

Android L is not able to draw dotted line as drawable background

Android L is not able to draw dotted line as drawable background as below:
vinb
  • 113
  • 5
6
votes
3 answers

Java add a Dashed or dotted border to a JPanel

I am having problems with this thing: can I, in some way, add a dashed (or dotted, no matter) border to a JPanel? I searched SO questions but seems that no one asked this before. I'm wondering if is there any class to use. actually I am…
Gianmarco
  • 2,536
  • 25
  • 57
5
votes
4 answers

Vertical dotted Line between two or multiple points in Flutter

I need a lil help to draw dotted line between 2 points without using google map's poly lines. I tried with canvas, it does but not exactly start under and above location. Right now you can see 2 points later it'll be more than 2 points. It really…
Mateen
  • 418
  • 1
  • 3
  • 12
4
votes
3 answers

xcode iphone touch dotted painting

HI every body I'm french so scuse me for my english. My problem is that I want to draw with my finger on the iphone a dotted drawing like that -----------, not a line but a draw.I have : CGContextSetLineCap(UIGraphicsGetCurrentContext(),…
arvin Arabi
  • 253
  • 1
  • 7
  • 21
4
votes
2 answers

Draw dotted border

I am porting an app from WPF to UWP. Until now, I had used the following code to draw a dotted border.
Ciprian Dragoe
  • 340
  • 2
  • 14
4
votes
1 answer

1px dotted border render in IE11/Edge

Noticed that in IE11/Edge 1px dotted border renders with some issues, in some parts of input it's brighter and in some - darker. input { display: block; height: 23px; vertical-align: middle; font-size: 13px; margin: 0; min-width: 500px; …
dieTrying
  • 367
  • 1
  • 6
  • 14
1
2 3 4 5