display:none and inline-block at the same time

Viewed 5666

I want to use display:inline-block for div element and the same time to do its invisible with display:none. Is it right?

div {display:inline-block;display:none;}
4 Answers
Related