How to remove spaces between inline/inline-block elements in HTML?
WBOY
Release: 2023-09-14 20:21:04
forward
717 people have browsed it
We can easily remove spaces between inline block elements. Before continuing, let's first create an HTML document and add an inline block element with spaces.
Inline block elements with spaces
We will style the inline block element using the display attribute with a value of inline-block -
nav a { display: inline-block; background: blue; color: white; text-decoration: none; font-size: 35px; }
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn