html怎么将两个div并排显示啊?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了html怎么将两个div并排显示啊?相关的知识,希望对你有一定的参考价值。
这是我的代码:网页显示结果:怎么把这个两个放在同一行显示啊,谢谢大家了
在html中让两个div并排显示,通常情况下有三种实现方式,包括:
(1)设置为行内样式,display:inline-block
(2)设置float浮动
(3)设置position定位属性为absolute
以下为三种方式的具体实现代码:
1、设置每个div的展现属性为行内样式,示例代码为:
<div class="app">
<div style="display:inline-block;background:#f00;">div1</div>
<div style="display:inline-block;background:#0f0;margin-left:10px;">div2</div>
</div>
2、设置float浮动,示例代码为:
<div class="app">
<div style="float:left;background:#f00;">div1</div>
<div style="float:left;background:#0f0;margin-left:10px;">div2</div>
</div>
3、设置position定位属性为absolute, 示例代码为:
<div class="app">
<div style="position: absolute;width:100px;background:#f00;">div1</div>
<div style="position: absolute;left:100px;background:#0f0;margin-left:10px;">div2</div>
</div>
扩展资料:
css清除浮动方法
(1)添加新的元素 、应用 clear:both
.clear
clear: both;
height: 0;
height: 0;overflow: hidden;
(2)父级div定义 overflow: auto
.over-flow
overflow: auto;
zoom: 1; //处理兼容性问题(3)伪类 :after 方法 outer是父div的样式
.outer zoom:1; /*==for IE6/7 Maxthon2==*/
.outer :after
clear:both;
content:'.';
display:block;
width: 0;
height: 0;
visibility:hidden;
参考资料来源:CSS官方文档:css-float
参考资料来源:CSS官方文档:css-Positioning
参考技术A让两个Div并排显示的方法有很多,使用display的inline属性、通过设置float来让Div并排显示都可以实现。
以下为3种方法和例子:
一、使用display的inline属性, 代码如下:
<div style="width:300px; height:auto; float:left; display:inline">AAAA</div>
<div style="width:300px; height:auto; float:left; display:inline">BBBB</div>
二、通过设置float来让Div并排显示 ,代码如下:
<style>
#left,#right float:left;border:1px solid red; padding:10px;
</style>
<div id= "main ">
<div id= "left "> 1111 </div>
<div id= "right "> 2222
2222
2222 </div>
<!-- 如果不用clear属性可能会出现浏览器不兼容问题,clear设这元素周围没有浮动元素 -->
<div style="clear:both"></div>
</div>
三、对于两个div并排,左边为绝对宽度,右边为相对宽度的,需要用到这种布局的情况比较多见,如左边为导航,右边为内容的页面 。
1、将最大的容器padding-left固定宽度,左边的固定宽度的一块position:absolute,然后right的一块width为百分百
2、 使用position:absolute。代码如下:
<style>
body margin:0; height:100%
html height:100% /*兼容firefox的div高度100%*/
#left position:absolute; top:0; left:0; width:200px; height:100%; background-color:#CCCCCC
#right margin-left:200px; height:100%; background-color:#0099FF
</style>
<div id="left">left</div>
<div id="right">right</div>
参考技术B 可以采用浮动的方法,只要宽度足够,两个div就可以在一排显示。打div里面包含两个小div。方法如下:
1、创建一个大div。
代码如下:
#main float:left;border:1px width:100%;
2、创建一个左边小div
代码如下:
#leftfloat:left;border:1px width:40%;
3、创建一个右边小div
代码如下:
#right float:left;border:1px width:40%;
4、制作成css文件,或者直接添加到网页上,就可以实现并排显示。本回答被提问者和网友采纳 参考技术C 定好宽高后 设置属性display:inline
我如何将p标签放在两个div下?
因此,我有两个div并排放置,左浮动为左div,右浮动为右div。我希望我的p出现在这两个div下方。但是它只是拒绝这样做。它始终显示在页面顶部或两个div之间。我已经尝试过将两个div设置为显示内联代码块,但是它们不会紧挨着而是换行。我对HTML和CSS还是比较陌生,所以也许这只是一个简单的初学者错误,但是如果有人可以帮助我,我将不胜感激。
.p
background: red;
width: 100%;
.tippsboxright
color: rgb(238, 238, 238);
max-width: 45%;
margin: 0 0 0 5%;
float: right;
font-size: 1.7vw;
padding: 0;
.boxleft
max-width: 50%;
<main>
<header>
<h1>My header</h1>
</header>
<div class="content">
<div class="boxleft">
<img src="../images/questionguy.png" alt="Typ mit fragen" class="imgkauftipps">
</div>
<div class="tippsboxright">
<p>
This is the right box with text inside of it.
</p>
</div>
<p class="p">This is the p tag that I want to be at the bottom of the page.</p>
</div>
</main>
我有个主意!请按PC上的Alt + F4
,它将起作用!
但是我有一个问题:Möchten Sie eine Brezel mit Weisswurst?
。
以上是关于html怎么将两个div并排显示啊?的主要内容,如果未能解决你的问题,请参考以下文章