<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>window.getComputedStyle</title>
<style>
div {
width: 300px;
height: 300px;
background-color: lightcoral;
border: solid 1px #999; /*BFC原理去掉margin重叠*/
}
div[data-desc]::after {
content: attr(data-desc);
display: block;
width: 50px;
height: 50px;
background-color: blue;
margin: 50% auto;
}
</style>
</head>
<body>
<div data-desc=
CSS伪元素:after|::after实现提示效果
最新推荐文章于 2023-12-15 09:13:53 发布