Is -webkit-column-break-before supported in Android 2.3 WebView?

I am trying to use CSS3 multi-column column layout in my Android application using WebView, but I want to make sure there is always a break before the h1 tags. This rule seems to work in Android 4.0 WebView, but it seems to be ignored in 2.3.3. Has anyone got this to work?

+6
source share
1 answer

Unfortunately, this proprietary CSS property is not supported in WebKit browsers version 533 and below. Try using your own CSS3 property instead: column-break-before

See also more details on how to use this CSS3 property: http://www.vanseodesign.com/css/multi-columns/

+1
source

Source: https://habr.com/ru/post/908799/


All Articles