CSS -webkit-box-orient: vertical property lost after compilation

CSS -webkit-box-orient: vertical property lost after compilation

1. Cause

The requirement is to display two lines, and the extra text is replaced by three dots, so these less standardized attributes are used.

display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;

Later I found that the code was written well, but it didn't respond when it was on the page, as if I hadn't written it at all. I checked it with F12 and found that the -webkit-box-orient: vertical; attribute was missing, causing it to fail to take effect. I just added this attribute in Styles, so I concluded that the compilation process caused this attribute to be lost.

2. Solution

I found a feasible solution on the Internet. To turn off autoprefixer, there is a way to write it:

/*!autoprefixer: off */
-webkit-box-orient: vertical;
/* autoprefixer: on */

This does solve the problem of missing compilation, but a warning will be reported during the compilation process. Finally, the best solution was found on GitHub, as follows

/* autoprefixer: ignore next */
-webkit-box-orient: vertical;

The problem is solved perfectly and no warning is reported.

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.

<<:  Markup validation for doctype

>>:  Solution to MySQL replication failure caused by disk fullness

Recommend

Vue implements the digital thousands separator format globally

This article example shares the specific code for...

Calling Baidu Map to obtain longitude and latitude in Vue

In the project, it is necessary to obtain the lat...

How to change the color of the entire row (tr) when the mouse stops in HTML

Use pure CSS to change the background color of a ...

Detailed tutorial on downloading mysql on Windows 10

MySQL versions are divided into Enterprise Editio...

Automatically load kernel module overlayfs operation at CentOS startup

To automatically load kernel modules in CentOS, y...

How to implement interception of URI in nginx location

illustrate: Root and alias in location The root d...

CentOS 6.5 i386 installation MySQL 5.7.18 detailed tutorial

Most people compile MySQL and put it in the syste...

Detailed explanation of CSS BEM writing standards

BEM is a component-based approach to web developm...

Several ways to easily traverse object properties in JS

Table of contents 1. Self-enumerable properties 2...

Detailed example of creating and deleting tables in MySQL

The table creation command requires: The name of...

A brief analysis of how to upgrade PHP 5.4 to 5.6 in CentOS 7

1. Check the PHP version after entering the termi...

Detailed explanation of Vue monitoring attribute graphic example

Table of contents What is the listener property? ...

React-native sample code to implement the shopping cart sliding deletion effect

Basically all e-commerce projects have the functi...