that’s my first time to asking, so sorry if I’m not asking it clearly.
I’m working with HTML and CSS and I don’t know why when I set a hover for a div to make a border around it, border appears but the div move a little bit to bottom, and that’s my problem, Does anyone else have it?
I’ll put a photo of CSS code and I will be glad if you can help me, thanks.
`.navbar{
height: 48.48px;
width: 70px;
float: right;
margin: 10px 5.57%;
color: white;
text-align: center;
cursor: pointer;
box-sizing: border-box;
}
.text1{
color: white;
cursor: pointer;
}
.navbar :hover{
border: 1.5px white solid;
border-radius: 10px;
}
I tried to make a border around a div when cursor is on it with hover, although the border appears, the div moves a little bit.
I even tried box sizing but it didn’t work
2
Answers
Using borders to indicate state comes with some caveats, mainly that the border doesn’t just sort of float around the element, it gets added to it’s dimensions, which will as a result appear to move a bit upon hovering over it. There are a few simple solutions for this. Which you choose can depend on the context.
Demo of all of the below solutions: https://jsfiddle.net/r5eafkv9/
Note: I’m using
button
s in my examples, but this all applies regardless of what element you’re styling. Could be a hyperlink, adiv
, or something else.1. Use
outline
instead ofborder
Borders are drawn within the bounds of the element, and add to it’s final dimensions (at least in the default CSS box model; we’ll get back to this*). Outlines, however, are drawn around the element, and can also overlap rather than nudging adjacent elements. You can sort of think of them as absolutely positioned relative to the button (or whatever the element is). They do not interact with the box model when it comes to dimensions/positioning.
2. Transparent default border
Add a transparent
border
to the default state. As long as it’s the same width as the one applied to the:hover
state, the dimensions will be the same.3. *Set
box-sizing
toborder-box
This tells the CSS box model to account for padding and borders in it’s calculations for elements’ width and height, as opposed to the default CSS box model (
content-box
), in which case, adding padding or borders to an element will add to its final on-screen dimensions, and need to be accounted for.General advice
I can’t express the importance of understanding the CSS box model. It’s really not that complicated, and learning it up front will save you endless hours that would otherwise be spent learning it by trial when you get stuck on cases like these where the box model comes into play. You should also know that this is the simplest version of the answer to the question "why is this like this?" being "because the box model".
Just a personal recommendation, not necessarily gospel, but the first lines of nearly every stylesheet I ever write are as follows:
Zeroing out
margin
andpadding
is optional, but if you’re a control freak like I am, you’ll appreciate the blank slate. The more important bit (to me at least) is thebox-sizing: border-box
rule, which simplifies most of the complexity of the box model away. You want adiv
to be 300px wide?…width: 300px;
Done. Not always the case with the default behaviour (box-sizing: content-box
).Happy coding!
Quick Tangent
Regarding Paulie_D’s comment about half pixels: They may just get rounded off a lot of the time, but they are 100% valid CSS. And when hardware acceleration is involved (
translate3d
, for example), they can very well have an actual effect, other than just being rounded to a full pixel. Whether or not it’s wise to use them explicitly is another question (it can result in elements appearing blurry when they land on a half pixel, for example, and again, they can also just be rounded (usually up, I believe)).Apply a transparent border of the same width in the non-hovered state. That way the element will be the same size in both the hovered and non-hovered states.