Solution to define the minimum height of span has no effect

Solution to define the minimum height of span has no effect
The span tag is often used when making HTML web pages, but some friends don’t know how to use this tag well. They think it is easy to use, but troublesome to use, especially when they need to define its width and height.

A friend once asked me: Why after defining the height and width of span with CSS, its width and height still do not change, as if they are invalid?

In fact, this problem is very simple - first you need to understand the properties of span, because span is an inline element, and inline elements ignore width and height. Once you understand this, the solution is very simple. The solution is to use CSS to turn span into a boxed element.

There are two ways to define an inline element as a boxed element:

1. Use the display attribute display directly to define it as a boxed element;

Copy code
The code is as follows:

display:block;

2. Use the float attribute to automatically define it as a boxed element;

Copy code
The code is as follows:

float:left;

<<:  Detailed usage of docker-maven-plugin

>>:  Introduction to commonly used fonts on the Web (fonts supported by iOS and Android browsers)

Recommend

Linux uses join -a1 to merge two files

To merge the following two files, merge them toge...

Understanding of CSS selector weight (personal test)

Copy code The code is as follows: <style type=...

Detailed tutorial for downloading, installing and configuring MySQL 5.7.27

Table of contents 1. Download steps 2. Configure ...

react+antd.3x implements ip input box

This article shares the specific code of react+an...

How to use nginx to block a specified interface (URL)

1. Introduction Sometimes, after the web platform...

Docker data storage tmpfs mounts detailed explanation

Before reading this article, I hope you have a ba...

MySQL permissions and database design case study

Permissions and database design User Management U...

JavaScript implements the protocol example in which the user must check the box

In js, set the user to read a certain agreement b...

About the problem of vertical centering of img and span in div

As shown below: XML/HTML CodeCopy content to clip...

Implementation of vue+drf+third-party sliding verification code access

Table of contents 1. Background 2. Verification p...

About the location of the H1 tag in XHTML

There has been a lot of discussion about H1 recent...

How to use @media in mobile adaptive styles

General mobile phone style: @media all and (orien...

The difference between GB2312, GBK and UTF-8 in web page encoding

First of all, we need to understand that GB2312, ...

HTML 5 Preview

<br />Original: http://www.alistapart.com/ar...

Bootstrap 3.0 study notes buttons and drop-down menus

The previous article was a simple review of the B...