user3286430
user3286430

Reputation:

Target webkit browsers for css3 exclusion

I have some text in a paragraph

Aliquam tempor interdum volutpat. Suspendisse potenti. Nunc nibh elit, sagittis nec libero a, pretium fermentum sapien. Aliquam eu risus eu dui varius elementum. Curabitur ut ex luctus, egestas dui sit amet, malesuada lectus.

I am trying to use css exclusions in the paragraph using the code below but it does not seem to work.

#exclusion {
    position: absolute;
    background: lightblue;
    -webkit-wrap-flow:clear !important;
}

Am i targeting webkit for exclusion correctly?.

Update

If you are not familiar with css exclusions, here are some examples http://galjot.si/css-exclusions

Upvotes: 0

Views: 38

Answers (2)

Quentin
Quentin

Reputation: 943591

Am i targeting webkit for exclusion correctly?.

No.

In general, new features in webkit today are added behind configuration flags instead of being vendor prefixes. (This is a consequence of developers using vendor prefixes in production).

Even when webkit browsers added new features behind vendor prefixes, you can't just use it and expect it to work.

See can I use. Currently only IE and Edge support Exclusions.

Upvotes: 1

Ellaylone
Ellaylone

Reputation: 34

there is no wrap-flow support in chrome, even with prefixes

http://caniuse.com/#search=wrap-flow

Upvotes: 0

Related Questions