Hi,
There is no option to do that and you can't do it in CSS.
You need to edit the file "listing" of the view "category" of the frontend via the menu Display>Views and change the code:
if(($this->params->get('show_image') && !empty($this->element->file_path))|| ($this->params->get('show_description')&&!empty($this->element->category_description))){
to:
if(in_array($this->element->category_id, array(XXX,YYY,ZZZ)) && ($this->params->get('show_image') && !empty($this->element->file_path))|| ($this->params->get('show_description')&&!empty($this->element->category_description))){
where XXX,YYY and ZZZ are to be replaced with the id of the categories where you want to display the description and image.