css斑马线

79 阅读1分钟
<template>
    <div>
        <h1>样式</h1>
        <div>斑马线</div>
        <div class="zebra"></div>
    </div>
</template>
<style scoped>
    .zebra {
        width: 500px;
        height: 80px;
        margin: 20px auto;
        background: linear-gradient(#fb5 35%, #58a 35%);
        background-size: 100% 30px;
    }
</style>