Reza
Reza

Reputation: 119

Any idea how to use webkit fill available working on firefox and ie?

I use css:

width: -webkit-fill-available;
height: -webkit-fill-available;

for my image, but in firefox and ie doesn't works. i already used:

width: 100%
max-width: 100%;

but still now works. this is example works on chrome but not in firefox and IE at firefox

at chrome

Upvotes: 0

Views: 7836

Answers (1)

Elea
Elea

Reputation: 31

For Firefox you could use:

width: -moz-available;

Upvotes: 3

Related Questions