Preface Sometimes when <style type="text/css" media="screen"> .test { height: 30vmin; width: 30vmin; background: lightblue; box-sizing: border-box; } .test:hover { border: 5px solid black; } </style> <div class="test"> this is a div. </div> The reason here is obvious. The size of our element has not changed (if the element width and height are not set or Adding a border to an element The sudden appearance of the border changes the original layout and moves the content. In this case, we can just let the border exist in the previous layout. .test { height: 30vmin; width: 30vmin; background: lightblue; border: 5px solid transparent; box-sizing: border-box; } .test:hover { border: 5px solid black; } Using box-shadow Using .test:hover { /* border: 5px solid black; */ box-shadow: 0 0 0 5px black; outline: 5px solid black; } Use padding We can reserve space for .test { height: 30vmin; width: 30vmin; background: lightblue; box-sizing: border-box; padding: 5px; } .test:hover { padding: 0; border: 5px solid black; } The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM. |
<<: Teach you to implement a simple promise step by step
>>: Detailed tutorial on integrating Apache Tomcat with IDEA editor
Greek letters are a very commonly used series of ...
The isnull() function cannot be used as a substit...
Application nesting of unordered lists Copy code T...
For Linux system administrators, it is crucial to...
From the tomcat configuration file, we can see th...
<br />Related articles: How to prompt and op...
When I was writing a program a few days ago, I wan...
I recently upgraded MySQL to 5.7, and WordPress r...
Table of contents Preface 1. What is selenium? 2....
This article uses examples to illustrate the tabl...
Linux task management - background running and te...
In fact, this is very simple. We add an a tag to ...
Table of contents 1. We found that this website m...
Custom Image FAQ How to view the data disk? You c...
A situation that often occurs in a project is tha...