在Bootstrap 4的末端对齐一个弹性项目
使用.align-self-end类在Bootstrap4的末尾对齐flex项目。
以下是我的div-
<div class="d-flex bg-info" style="height:200px">
现在您需要设置弹性项目,其中我要对齐第三个弹性项目-
<div class="d-flex bg-info" style="height:200px"> <div class="p-2 border">Item 1</div> <div class="p-2 border">Item 2</div> <div class="p-2 border align-self-end">Item 3</div> <div class="p-2 border">Item 4</div> </div>
您可以尝试运行以下代码来实现align-self-end类-
示例
<!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>
</head>
<body>
<div class="container mt-3">
<h1>Align Specific Flex Item from the end</h1>
<div class="d-flex bg-info" style="height:200px">
<div class="p-2 border">Item 1</div>
<div class="p-2 border">Item 2</div>
<div class="p-2 border align-self-end">Item 3</div>
<div class="p-2 border">Item 4</div>
</div>
</div>
</body>
</html>