This time I will bring you the default spacing of inline-block elements. What are the precautions for clearing the default spacing of inline-block elements? The following is a practical case, let's take a look.
Without further ado, let’s look directly at the sample code
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title></title> <style> .content{ letter-spacing: -0.5em; } .content .box{ letter-spacing: normal; } .content2{ font-size: 0; } .content2 .box{ font-size: initial; } .box{ width: 200px; height: 100px; background-color: #EEEEEE; display: inline-block; vertical-align: top; } </style> </head> <body> <h4>默认状态</h4> <p> <p class="box">盒子1</p> <p class="box">盒子2</p> <p class="box">盒子3</p> <p class="box">盒子4</p> <p class="box">盒子5</p> </p> <h4>方法一 letter-spacing: -0.5em</h4> <p class="content"> <p class="box">盒子1</p> <p class="box">盒子2</p> <p class="box">盒子3</p> <p class="box">盒子4</p> <p class="box">盒子5</p> </p> <h4>方法二 font-size: 0</h4> <p class="content2"> <p class="box">盒子1</p> <p class="box">盒子2</p> <p class="box">盒子3</p> <p class="box">盒子4</p> <p class="box">盒子5</p> </p> </body> </html>
The implemented renderings are as follows
I believe you have mastered the method after reading the case in this article. For more exciting information, please pay attention to other related articles on the php Chinese website! Recommended reading:Fixed on the left and adaptive layout on the right
opacity transparency filter for IE Compatible solutions
The above is the detailed content of Default spacing of inline-block elements is cleared. For more information, please follow other related articles on the PHP Chinese website!