<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style>
/*绝对定位:脱标,可以让行内元素设置宽高*/
span {
position: absolute;
top: 100px;
left: 100px;
width: 100px;
height: 100px;
background-color: pink;
}
</style>
</head>
<body>
<span>阿萨德</span>
</body>
</html>
***相关效果