首页 > 编程 > HTML > 正文

html中关于换行符占空间的解决办法

2020-03-24 18:15:15
字体:
来源:转载
供稿:网友


这里写图片描述
如上图:parent的width:600px;
child1和child2的width:300,display:inline-block;
我们希望它们并排显示,但为什么会换行呢?

<html lang="en"><head>  <meta charset="UTF-8">  <title>Document</title>    <link rel="stylesheet" href="transoform.css"></head><body> <p class="parent">   <p class="child1">1</p>      <p class="child2">2</p>  </p></body></html>
.parent{  width:600px;  border: solid;  /* font-size:0; */}.child1{  width:300px;  height: 300px;  display:inline-block;  /* font-size:20px; */  line-height: 300px;    text-align: center;    background:#ccc;}  .child2{    width:300px;    height: 300px;    display:inline-block;    /* font-size:20px; */  line-height: 300px;    text-align: center;    background: rgba(230, 32, 32, 0.51);  }

因为在html中,parent中间有换行空格等等,其实这些也是占据空间的;

如何解决?
① 在parent中添加font-size:0;这样parent内的空格换行就不占空间了;但有个问题,会发现child的文字也没有了,由于font-size默认是继承的;
② 所以第二部就是设置child的font-size;
修改后如图

以上就是html中关于换行符占空间的解决办法的详细内容,更多请关注 其它相关文章!

郑重声明:本文版权归原作者所有,转载文章仅为传播更多信息之目的,如作者信息标记有误,请第一时间联系我们修改或删除,多谢。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表