The content of this article is about the effect of adding a sign in pure CSS (code example). It has certain reference value. Friends in need can refer to it. I hope it will be helpful to you.
Achieve the plus sign effect in the picture below:
If you want to achieve this effect, you only need one p element.
You need to use css for before, after, and border features.
First set a div note
1 |
|
Then set a border:
1 2 3 4 5 6 7 8 |
|
At this time the border is like this:
We can use the pseudo-class before and its border-top to set a "horizontal":
1 2 3 4 5 6 7 8 9 10 |
|
Note that we use absolute positioning. At this time it becomes like this:
Referring to the above, we can use the after pseudo-class and border-bottom to set a "vertical":
1 2 3 4 5 6 7 8 9 10 |
|
Add the hover pseudo-class and set the color of the mouse hover:
The final style:
When When the mouse is hovered over, it will change color:
The above is the detailed content of Pure CSS to achieve the effect of a plus sign (code example). For more information, please follow other related articles on the PHP Chinese website!