About the IE label LI text wrapping problem

About the IE label LI text wrapping problem
I struggled with this for a long time, and after searching, I found that someone really solved this problem. When using UL and LI to display text, the IE browser does not force the LI text length to start on one line by default. As a result, if the text exceeds the width set by UL, it will wrap at the existing position, causing display problems.

Solution:

Copy code
The code is as follows:

ul li{
white-space:nowrap;
}

Look carefully, it is li that sets this attribute, not ul.

<<:  CSS3 to achieve dynamic background gradient effect

>>:  Solve the problem of using less in Vue

Recommend

Practical example of Vue virtual list

Table of contents Preface design accomplish summa...

Embed player in web page embed element autostart false invalid

Recently, I encountered the need to embed a player...

CSS World--Code Practice: Image Alt Information Presentation

Using the <img> element with the default sr...

Summary of 3 ways to lazy load vue-router

Not using lazy loading import Vue from 'vue&#...

Summary of the differences between global objects in nodejs and browsers

In Node.js, a .js file is a complete scope (modul...

CSS3 achieves cool sliced ​​image carousel effect

Today we will learn how to use CSS to create a co...

Text mode in IE! Introduction to the role of DOCTYPE

After solving the form auto-fill problem discussed...

JavaScript event delegation principle

Table of contents 1. What is event delegation? 2....

Nginx http health check configuration process analysis

Passive Check With passive health checks, NGINX a...

Detailed steps for porting busybox to build a minimal root file system

Busybox: A Swiss Army knife filled with small com...

Detailed tutorial on installing Nginx 1.16.0 under Linux

Because I have been tinkering with Linux recently...

Detailed explanation of the use of Element el-button button component

1. Background Buttons are very commonly used, and...

Docker realizes the connection with the same IP network segment

Recently, I solved the problem of Docker and the ...