jquery - Remove CSS "content" property -


i have 3rdparty css contains following declaration:

:-webkit-any(body):after {   content: "";   display: block;   visibility: hidden;   height: 0;   font: 0/0;   -webkit-transform: translatez(0); } 

the content css property cause problem in jquery ui dialog - scrollbar disappears...

if removing content (putting in comment) works well. since 3rdparty, remove property code via jquery , not updating css. possible?

thanks sigal

you've tagged question , it's important ot know not possible directly target :before , :after pseudo elements using javascript.

your options are:

  1. write additional css code overrides styles don't want.

  2. change original css selector (or html) such selector no longer applies don't want it.


Comments

Popular posts from this blog

c# - DetailsView in ASP.Net - How to add another column on the side/add a control in each row? -

javascript - firefox memory leak -

Trying to import CSV file to a SQL Server database using asp.net and c# - can't find what I'm missing -