gpt4 book ai didi

html - 模态对话框关闭图标与 CSS 对齐

转载 作者:太空宇宙 更新时间:2023-11-04 07:08:17 25 4
gpt4 key购买 nike

当我尝试将关闭图标与模式对话框标题条对齐时,它没有对齐。标题条仅在关闭按钮旁边被击中。它没有进一步移动。我的想法是将关闭图标保留在对话框标题栏上。是这样的吗?见下文。

enter image description here

但是我越来越喜欢这个了。见下文。

enter image description here

在我尝试过的下面查看我的代码。

<!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://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.0/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.1.0/js/bootstrap.min.js"></script>
</head>
<body>

<div class="container">
<h2>Modal Example</h2>
<!-- Button to Open the Modal -->
<button type="button" class="btn btn-primary" data-toggle="modal" data-target="#myModal">
Open modal
</button>

<!-- The Modal -->
<div class="modal" id="myModal">
<div class="modal-dialog">
<div class="modal-content">

<!-- Modal Header -->
<div class="modal-header">
<h4 class="modal-title" style=" width: 100%; height: 24%; margin: -16px -17px 0 -16px; padding: 10px 0 8px 0; background-color: #2196f3; border-top-left-radius: 3px; border-top-right-radius: 3px">Modal Heading</h4>
<button type="button" class="close" data-dismiss="modal">&times;</button>
</div>

<!-- Modal body -->
<div class="modal-body">
Modal body..
</div>

<!-- Modal footer -->
<div class="modal-footer">
<button type="button" class="btn btn-danger" data-dismiss="modal">Close</button>
</div>

</div>
</div>
</div>

</div>

</body>
</html>

那么我该如何实现呢?欢迎任何想法和建议。

谢谢。

最佳答案

你的风格<h4>弄乱了它的外观。将其更改为您的 header div并像这样删除负边距:

<div class="modal-header" style=" width: 100%; height: 24%; margin: 0 padding: 10px 0 8px 0; background-color: #2196f3; border-top-left-radius: 3px; border-top-right-radius: 3px">
<h4 class="modal-title">Modal Heading</h4>
<button type="button" class="close" data-dismiss="modal">&times;</button>
</div>

DEMO

关于html - 模态对话框关闭图标与 CSS 对齐,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51399194/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com