How can you set the overflow property of an HTML element using JavaScript?
A). element.style.overflow = 'hidden';
B). element.overflow = 'hidden';
C). element.style.overflow = 'visible';
D). element.overflow = 'visible';
How can you set the z-index of an HTML element using JavaScript?
A). element.style.zIndex = '100';
B). element.zIndex = '100';
C). element.setZIndex('100');
D). element.style.setZIndex('100');
How can you set the cursor style of an HTML element using JavaScript?
A). element.style.cursor = 'pointer';
B). element.cursor = 'pointer';
C). element.style.pointer = 'cursor';
D). element.pointer = 'cursor';
How can you change the background color of an HTML element using JavaScript?
A). element.style.backgroundColor = 'color';
B). element.background = 'color';
C). element.style.bgColor = 'color';
D). element.bgColor = 'color';
How can you set the display property of an HTML element using JavaScript?
A). element.style.display = 'block';
B). element.display = 'block';
C). element.style.visibility = 'visible';
D). element.visibility = 'visible';
How can you set the padding of an HTML element using JavaScript?
A). element.style.padding = 'padding';
B). element.padding = 'padding';
C). element.setAttribute('padding', 'padding');
D). element.style.padding('padding');
How can you change the font size of an HTML element using JavaScript?
A). element.style.fontSize = 'size';
B). element.fontSize = 'size';
C). element.size = 'size';
D). element.font.size = 'size';
How can you set the opacity of an HTML element using JavaScript?
A). element.style.opacity = '0.5';
B). element.opacity = '0.5';
C). element.setOpacity('0.5');
D). element.style.setOpacity('0.5');
How can you set the border width of an HTML element using JavaScript?
A). element.style.borderWidth = 'width';
B). element.border.width = 'width';
C). element.style.border.width = 'width';
D). element.width = 'width';
How can you set the box-shadow of an HTML element using JavaScript?
A). element.style.boxShadow = '10px 10px 5px #888888';
B). element.boxShadow = '10px 10px 5px #888888';
C). element.style.shadowBox = '10px 10px 5px #888888';
D). element.shadowBox = '10px 10px 5px #888888';