如果要为元素设置右圆角,请使用Bootstrap 4中的rounded-right类。
将其添加到网页上并不是一项繁琐的任务。只需将类添加到div类-
<div class="one rounded-right"></div>
上面的一个类用于设置div的样式-
<style> .one { width: 200px; height: 100px; background-color: #00FF00; margin: 8px; } </style>
您可以尝试运行以下代码以实现四舍五入的类-
<!DOCTYPE html> <html lang="en"> <head> <title>Bootstrap Example</title> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.1.0/css/bootstrap.min.css"> <script src="https://cdn.staticfile.org/jquery/3.3.1/jquery.min.js"></script> <script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.1.0/js/bootstrap.min.js"></script> <style> .one { width: 200px; height: 100px; background-color: #00FF00; margin: 8px; } </style> </head> <body> <div class="container"> <h2>Rounded Corner</h2> <p>We have a rectangle with right rounded corner:</p> <div class="one rounded-right"></div> </div> </body> </html>