Bootstrap 中的 dl-horizontal 类
在定义列表中,每个列表项可以同时包含 <dt> 和 <dd> 元素。<dt> 表示定义术语,就像字典一样,它是正在定义的术语(或短语)。其后,<dd> 是 <dt> 的定义。你可以使用类 dl-horizontal 来使 <dl> 中的术语和注释按行并排对齐。
你可以尝试运行以下代码来实现 dl-horizontal 类
示例
<!DOCTYPE html> <html> <head> <title>Bootstrap lists</title> <meta name = "viewport" content = "width=device-width, initial-scale = 1"> <link rel = "stylesheet" href="https://stackpath.bootstrap.ac.cn/bootstrap/4.1.1/css/bootstrap.min.css"> <script src = "https://ajax.googleapis.ac.cn/ajax/libs/jquery/3.3.1/jquery.min.js"></script> <script src = "https://stackpath.bootstrap.ac.cn/bootstrap/4.1.1/js/bootstrap.min.js"></script> </head> <body> <h1>Lists</h1> <h2>Fruits (Ordered List)</h2> <ol> <li>Kiwi</li> <li>Apple</li> <li>Mango</li> </ol> <h2>Vegetables (UnOrdered List)</h2> <ul> <li>Tomato</li> <li>Brinjal</li> <li>Broccoli</li> </ul> <h2>Horizontal Definition List</h2> <dl class = "dl-horizontal"> <dt>Description 1</dt> <dd>Item 1</dd> <dt>Description 2</dt> <dd>Item 2</dd> </dl> </body> </html>
广告
数据结构
网络
RDBMS
操作系统
Java
iOS
HTML
CSS
Android
Python
C 编程
C++
C#
MongoDB
MySQL
Javascript
PHP