Hide div but keep the empty space

后端 未结 5 1716
庸人自扰
庸人自扰 2021-02-01 00:17

I have the following div element:

5条回答
  •  小鲜肉
    小鲜肉 (楼主)
    2021-02-01 00:42

    And another option for the sake of completeness. Toggle opacity:

    $(".description").css('opacity', 0); // hide
    $(".description").css('opacity', 1); // show
    

    http://jsfiddle.net/KPqwt/

    However using visibility is prefered for this task.

提交回复
热议问题