About 169,000 results
Open links in new tab
  1. css - Control the dashed border stroke length and distance …

    May 5, 2010 · In addition to the border-image property, there are a few other ways to create a dashed border with control over the length of the stroke and the distance between them.

  2. How do I set <table> border width with CSS? - Stack Overflow

    15 The default border-style is none, so you must specify that as well as the width and the colour. You can use the border shorthand property to set all three values in one go. Also, the border …

  3. css - How to set border's thickness in percentages? - Stack Overflow

    Nov 20, 2012 · How to set border-width of an element in percentages? I tried the syntax border-width:10%; But it doesn't work. The reason I want to set border-width in percentages is I have …

  4. css - Any way to limit border length? - Stack Overflow

    Nov 9, 2010 · With CSS (Linear Gradient): We can use linear-gradient() to create a background image (s) and control its size and position with CSS so that it looks like a border. As we can …

  5. How to give border to any element using css without adding …

    The box-sizing CSS3 property can do this. The border-box value (as opposed to the content-box default) makes the final rendered box the declared width, and any border and padding cut …

  6. css - When 1 px border is added to div, Div size increases, Don't …

    Feb 21, 2015 · The border css property will increase all elements "outer" size, excepts tds in tables. You can get a visual idea of how this works in Firebug (discontinued), under the html …

  7. css - how to prevent shifting when changing border width - Stack …

    Oct 8, 2013 · 5 Other options: box-sizing: border-box; This will include the border width as part of the total width, you will notice a shift of the content though wrap with another div You could …

  8. How to increase space between dotted border dots

    Jun 6, 2011 · I am using dotted style border in my box like .box { width: 300px; height: 200px; border: dotted 1px #f00; float: left; } I want to the increase the space between each dot of the b...

  9. css - Any way to declare a size/partial border to a box ... - Stack ...

    May 19, 2020 · Any way to declare a size/partial border to a box in CSS? For example a box with 350px that only shows a border-bottom in its firsts 60px. I think that might be very useful. …

  10. html - Border Height on CSS - Stack Overflow

    Apr 14, 2011 · I have a table TD and on the right of it I want to add a 1 pixel border, so I've done this: table td { border-right:1px solid #000; } It works fine but the problem is that the border's …