div#errors_of_saved{
width: 100px;
display: inline-block;
display: none;}
There is error div, which is hidden until some JS function doesn't fade it in, and also it should be displayed inline.
The problem - this way text editor says that display
property is overwritten, and display: inline-block none;
- that syntax is invalid.
I don't want to use visibilty:hidden
because Jquery animation fadeIn() fadeOut()
doesn't work with visibility.
What can I do?