The ______ and ______ properties are used in CSS to hide and show columns in responsive tables.
Difficulty level
block and none
display and visibility
margin and padding
visible and hidden
In CSS, the display and visibility properties are commonly used to hide and show elements. Specifically for table columns, setting the display property to none will effectively hide the column, while the visibility property can hide an element but still take up space. It's important to differentiate between them as they affect the layout differently.