InterviewSolution
Saved Bookmarks
| 1. |
How to invert the color of an image? |
|
Answer» To SELECT language text DIRECTION the selector will be [dir=rtl] and followed by class .cw-alert, and to select the DIV EXCEPT class .alert-button-container :not pseudoclass can be used as follows. [dir=rtl] .cw-alert>div:not(.alert-button-container){ /* Your code here */ } |
|