blob: 5f8eba2eb69de2efa9115016f0e92749d2a15117 [file] [log] [blame] [edit]
<!DOCTYPE html>
<style>
progress {
width: 100px;
height: 100px;
appearance: none;
position: relative;
}
progress::before {
position: absolute;
content: "";
width: 50%;
height: 100%;
background: green;
}
progress::after {
position: absolute;
content: "";
top: 0;
right: 0;
width: 50%;
height: 100%;
background: green;
}
</style>
<progress></progress>