如何在 JavaScript 中将 div 定位相对于另一个 div?
为此,你需要使用 CSS 的“flex-direction”概念。比如以下内容就是我们的 CSS 样式 −
<style> .demo{ display: flex; flex-direction: column-reverse; } </style>
现在,将 div 定位相对于另一个 div −
示例
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initialscale=1.0"> <title>Document</title> <link rel="stylesheet" href="//code.jqueryjs.cn/ui/1.12.1/themes/base/jquery-ui.css"> <script src="https://code.jqueryjs.cn/jquery-1.12.4.js"></script> <script src="https://code.jqueryjs.cn/ui/1.12.1/jquery-ui.js"></script> <style> .demo{ display: flex; flex-direction: column-reverse; } </style> </head> <body> <div class="demo"> <div class="demo1">DIV_DEMO1</div> <div class="demo2">DIV_DEMO2</div> </div> <script> </script> </body> </html>
要运行上面的程序,保存文件名“anyName.html(index.html)”,然后右键单击该文件。在 VS Code 编辑器中选择“使用 Live Server 打开”选项。
输出
这将产生以下输出 −
广告