css样式实现目录功能实现…自动填充满容器剩余空间,并始终追随在文字后方

在这里插入图片描述
代码

<!DOCTYPE html>
<html lang="zh-CN">

<head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>Word样式目录点线填充</title>
        <style>


        </style>
</head>
<body>
        <div style="  display: flex;  position: relative; overflow: hidden;">
                <div style="flex: 1;position: relative;">
                        <a 
                                style="  position: relative;  
                                display: inline; line-height: 1.5;  z-index: 2;">
                                css样式实现目录功能实现.....自动填充满容器剩余空间,并始终追随在文字后方
                                <!-- 填充.....的容器 -->
                                <span style="position: absolute;
                                left: 100%;
                                bottom: 0.35em;
                                width: 100vw;
                                background-image: radial-gradient(circle, #7f8c8d 1px, transparent 1.5px);
                                background-size: 6px 1.5px;
                                background-repeat: repeat-x;
                                height: 1.5px;
                                z-index: 1;"></span>
                        </a>
                </div>
        </div>
</body>

</html>

更多推荐