How to limit the border? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

How to limit the border?

Hi. When you add a border to an element using CSS, the border stretches to the right to the end. How to limit the length of the border? p.first { padding: 10px; border-style: solid; border-width: 2px; } p.second { padding: 10px; border-style: solid; border-width: 5px; }

1st Sep 2017, 10:46 AM
Aidos Zhakupov
Aidos Zhakupov - avatar
2 Answers
+ 6
box-sizing:border-box; But it should require prefixed versions to be supported by major browsers and/or versions: -webkit-box-sizing:border-box; -moz-box-sizing:border-box; box-sizing:border-box;
1st Sep 2017, 11:07 AM
visph
visph - avatar
+ 2
Thank you
1st Sep 2017, 11:16 AM
Aidos Zhakupov
Aidos Zhakupov - avatar