#help, "box-sizing:border-box" does not work | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 3

#help, "box-sizing:border-box" does not work

I'm try to add white border to hover menu. When i hover the menu, height and width is increases. I try to add "box-sizing: border-box;" but doesn't work. this is my code: https://code.sololearn.com/WlvdMVG0EeeL is there something wrong with my code?

16th Nov 2018, 8:12 AM
Lian
Lian - avatar
3 Answers
+ 5
.main-nav a{ color: #fff; display: block; padding: 10px 20px; box-sizing: border-box; text-decoration: none; border : 2px solid #000529; } This does the trick for the output. Simply add a border property to .main-nav a
16th Nov 2018, 8:21 AM
Vedant Bang
Vedant Bang - avatar
+ 1
Ehhhhhhh hehehhe its work. I will remember that trick :D Thank you @vedant Bang
16th Nov 2018, 9:15 AM
Lian
Lian - avatar
0
You're welcome :)
16th Nov 2018, 11:53 AM
Vedant Bang
Vedant Bang - avatar