InterviewSolution
Saved Bookmarks
| 1. |
How to select all immediate div which is the descendant of class cw-alert, whereas the descendant div with class name .alert-button-container not to be selected. The css rules to applicable for languages who text-direction is right to left? |
|
Answer» The font family system is proposed by apple in 2015, available with prefix as -apple-system The IDEA behind is to allow the WEB author to MAKE use of native fonts available on different platform running the browser. The font-family system is platform-specific rather browser specific. The same browser running on different platform/operating system will implement the GENERIC font differently as available on that platform. body { font-family: -apple-system, BlinkMacSystemFont, “Segoe UI”, ROBOTO, Helvetica, Arial, sans-serif; }For more: https://lists.w3.org/Archives/Public/www-style/2015Jul/0169.html |
|