Home > Article > Web Front-end > How to Dynamically Alter the Width of a :before Pseudo-Element using jQuery?
Altering :before CSS Selectors Width using JQuery
In order to dynamically set the width of the :before pseudo-element, you can append a new style element to the document's head.
JQuery Code:
$('head').append('<style>.column:before{width:800px !important;}</style>');
Explanation:
Note:
This technique allows you to dynamically change the width of elements with the :before pseudo-element, while leaving elements without it unaffected.
The above is the detailed content of How to Dynamically Alter the Width of a :before Pseudo-Element using jQuery?. For more information, please follow other related articles on the PHP Chinese website!