5 ways to quickly remove the blank space of Inline-Block in HTML

5 ways to quickly remove the blank space of Inline-Block in HTML

The inline-block property value becomes very useful when you need to control margin and padding on "inline" elements, so you no longer need to make these elements "block" or "float". But there is a problem, when using inline-block, the whitespace between HTML elements will show up on the page. Very annoying. There are a few ways to remove these whitespaces; one of them is quite clever.

Method 1: No space between elements

A 100% surefire way to fix this is to not leave any whitespace between elements in your HTML:

CSS CodeCopy content to clipboard
  1. <ul>
  2.   
  3. <li>Item content </li>
  4.   
  5. <li>Item content </li>
  6.   
  7. <li>Item content </li>
  8.   
  9. </ul>

Of course, this looks messy and makes the code difficult to maintain, but it is practical, intuitive, and most importantly... reliable.

Method 2: Set font-size: 0 on the parent element

The best solution to this whitespace issue is to set font-size: 0 on the parent element of these inline-block elements. If you have an inline-block <LI> inside your <UL>, you can do this:

XML/HTML CodeCopy content to clipboard
  1. .inline-block-list { /* ul or ol with this class */
  2. font-size: 0;
  3. }
  4.   
  5. .inline-block-list li {
  6. font-size: 14px; /* put the font-size back */
  7. }
  8.   

In order to prevent the font size of the parent element from affecting the child element, you need to re-set the font-size value on the child element, which is usually simple. The only time you might run into trouble is if you use relative font sizes. But most of the time, this method can solve your problem.

Method 3: HTML Comments

This method is a bit more brute force, but it works just as well. Padding HTML elements with comments has the same effect as having no space between them:

XML/HTML CodeCopy content to clipboard
  1. < ul >   
  2.   < li > Item content </ li > <!--
  3. --><li>Item content</li><!--
  4. --> < li > Item content </ li >   
  5. </ ul >   
  6.   

In one word…disgusting. In two words…disgusting. In three words….OK, you get it. But it works!

Method 4: Negative Margins

Very similar to method 2 , sorry. You can take advantage of the flexibility of inline-block and give them a negative margin to hide the whitespace:

XML/HTML CodeCopy content to clipboard
  1. .inline-block-list li {
  2. margin-left: -4px;
  3. }
  4.   

This method is the least recommended because you have to take various situations into account and sometimes there will be some unforeseen gaps. It’s best not to use this trick.

Method 5: Chain Link

Another way to take advantage of HTML markup is to place the closing tag of an element close to the opening tag of the next element:

XML/HTML CodeCopy content to clipboard
  1. < ul >   
  2.   < li > Item content </ li   
  3.   > < li > Item content </ li   
  4.   > < li > Item content </ li >   
  5. </ ul >   
  6.   

Not as ugly as HTML comments, but I'd rather remove those whitespaces by hand regardless of code readability.

No approach is ideal, but leaving no whitespace on a web page is a bad approach. This is not to warn you not to use inline-block. Inline-block is still very useful. You just need to understand how to deal with the whitespace inside it.

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

<<:  MySQL beginners can say goodbye to the troubles of grouping and aggregation queries

>>:  Using vue3+threejs to imitate the iView official website big wave special effects example

Recommend

10 Underused or Misunderstood HTML Tags

Here are 10 HTML tags that are underused or misun...

js canvas to realize the Gobang game

This article shares the specific code of the canv...

The difference between shtml and html

Shtml and asp are similar. In files named shtml, s...

Common usage of hook in react

Table of contents 1. What is a hook? 2. Why does ...

Detailed explanation of encoding issues during MySQL command line operations

1. Check the MySQL database encoding mysql -u use...

Vue implements accordion effect

This article example shares the specific code of ...

Several ways to use v-bind binding with Class and Style in Vue

Adding/removing classes to elements is a very com...

MySQL database table partitioning considerations [recommended]

Table partitioning is different from database par...

Detailed steps for installing and configuring mysql 5.6.21

1. Overview MySQL version: 5.6.21 Download addres...

Java+Tomcat environment deployment and installation process diagram

Next, I will install Java+Tomcat on Centos7. Ther...

Using vue3 to implement counting function component encapsulation example

Table of contents Preface 1. The significance of ...

How to use cc.follow for camera tracking in CocosCreator

Cocos Creator version: 2.3.4 Demo download: https...

MyBatis dynamic SQL comprehensive explanation

Table of contents Preface Dynamic SQL 1. Take a l...

How to deploy LNMP architecture in docker

Environmental requirements: IP hostname 192.168.1...

uniapp project optimization methods and suggestions

Table of contents 1. Encapsulate complex page dat...