Add information on inline block to navigation (#23913)

This commit is contained in:
ninjahellokitty
2018-12-31 14:41:23 +08:00
committed by Kristofer Koishigawa
parent 6a476b50aa
commit 406091303f

View File

@ -2,13 +2,30 @@
title: Inline Block
---
## Inline Block
Inline-block is a possible value of the display property.
inline-block is a possible value of the display property.
Elements marked as _inline-block_ behave like inline elements (_spans_, for example), but can have width and height.
<!-- The article goes here, in GitHub-flavored Markdown. Feel free to add YouTube videos, images, and CodePen/JSBin embeds -->
You can add inline-block to navigation so it is displayed horizontally instead of vertically.
HTML:
```html
<ul class="nav">
<li><a href="#">Home</a></li>
<li><a href="#">About Me</a></li>
<li><a href="#">Blog</a></li>
<li><a href="#">Contact</a></li>
</ul>
```
CSS:
```css
.nav li {
display: inline-block;
padding: 20px;
}
```
#### More Information:
<!-- Please add any articles you think might be helpful to read before writing the article -->
<a href="https://css-tricks.com/almanac/properties/d/display/#inline-block" target="_blank">This is a great article</a> to read up to understand more about creating layouts with inline-block elements.
[CSS-Tricks - inline-block](https://css-tricks.com/almanac/properties/d/display/#inline-block)