明輝手游網(wǎng)中心:是一個(gè)免費(fèi)提供流行視頻軟件教程、在線學(xué)習(xí)分享的學(xué)習(xí)平臺(tái)!

html中對(duì)于換行符占空間的處理方法

[摘要]如上圖:parent的width:600px; child1和child2的width:300,display:inline-block; 我們希望它們并排顯示,但為什么會(huì)換行呢?<html lang="en"><head><meta charse...


這里寫圖片描述
如上圖:parent的width:600px;
child1和child2的width:300,display:inline-block;
我們希望它們并排顯示,但為什么會(huì)換行呢?

<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);
  }

因?yàn)樵趆tml中,parent中間有換行空格等等,其實(shí)這些也是占據(jù)空間的;

如何解決?
① 在parent中添加font-size:0;這樣parent內(nèi)的空格換行就不占空間了;但有個(gè)問題,會(huì)發(fā)現(xiàn)child的文字也沒有了,由于font-size默認(rèn)是繼承的;
② 所以第二部就是設(shè)置child的font-size;
修改后如圖

以上就是html中關(guān)于換行符占空間的解決辦法的詳細(xì)內(nèi)容,更多請(qǐng)關(guān)注php中文網(wǎng)其它相關(guān)文章!


網(wǎng)站建設(shè)是一個(gè)廣義的術(shù)語,涵蓋了許多不同的技能和學(xué)科中所使用的生產(chǎn)和維護(hù)的網(wǎng)站。