gpt4 book ai didi

css - 使用 div 在左侧或右侧对齐网页分区的正确方法

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

我正在重新开始一个元素的 Web 开发,我正在尝试学习如何设置我的 div,以便让一些元素左对齐,而另一些元素右对齐。许多个月前,在 的出现之前,我会使用表格并设置单元格的对齐方式,但我似乎找不到与 div 的等效项。

在下面的 html 代码中,我试图使文本“我的品牌”位于左侧,而“链接 1”和“链接 2”文本 block 位于右侧。所有 3 个文本 block 应位于同一行并垂直对齐。

<html>
<head>
<title>Hi Mom</title>


<style>
.header
{
background-color:#BFEFFF;
height:50px;
}

.tagline
{
color: #00A5D8;
font-size: 20pt;
font-family: Helvetica Neue;
font-weight: bold;
vertical-align: middle;
text-indent: 20pt;
display: inline;
}

body
{
margin:0px;
}
</style>
</head>
<body >

<div class="header"><div class="tagline"><p>My Brand</p></div><div class="tagline"><p>Link 1</p></div><div class="tagline"><p>Link 2</p></div></div>

<div><center>
blah blah
</center></div>
</body>
</html>

谢谢

最佳答案

HTML

   <div class="header"><div class="tagline1"><p >My  Brand</p></div><div class="tagline"><p>Link 2</p></div><div class="tagline"><p>Link 1</p></div></div>

<div><center>
blah blah
</center></div>

CSS

   .header
{
background-color:#BFEFFF;
height:50px;


}

.tagline
{
color: #00A5D8;
font-size: 20pt;
font-family: Helvetica Neue;
font-weight: bold;
vertical-align: middle;
text-indent: 20pt;
display: inline;
float:right;
width:300px;
}
.tagline1
{
color: #00A5D8;
font-size: 20pt;
font-family: Helvetica Neue;
font-weight: bold;
vertical-align: middle;
text-indent: 20pt;
display: inline;
float:left;
width:300px;
}


body
{
margin:0px;
overflow:hidden;
}

关于css - 使用 div 在左侧或右侧对齐网页分区的正确方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18436944/

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