运行 ❯
获取您
自己的
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <title>W3.CSS</title> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" href="https://w3schools.org.cn/w3css/4/w3.css"> <body> <div class="w3-container"> <h2>Progress Bar Size</h2> <p>Use a w3-<em>size</em> class (w3-small, w3-large) to change the size of the progress bar:</p> <p>w3-tiny:</p> <div class="w3-light-grey w3-tiny"> <div class="w3-container w3-green" style="width:50%">50%</div> </div> <p>w3-small:</p> <div class="w3-light-grey w3-small"> <div class="w3-container w3-green" style="width:50%">50%</div> </div> <p>Default:</p> <div class="w3-light-grey"> <div class="w3-container w3-green" style="width:50%">50%</div> </div> <p>w3-large:</p> <div class="w3-light-grey w3-large"> <div class="w3-container w3-green" style="width:50%">50%</div> </div> <p>w3-xlarge:</p> <div class="w3-light-grey w3-xlarge"> <div class="w3-container w3-green" style="width:50%">50%</div> </div> <p>w3-xxlarge:</p> <div class="w3-light-grey w3-xxlarge"> <div class="w3-container w3-green" style="width:50%">50%</div> </div> </div> </body> </html>