?
Case-Based Critical Thinking Questions
Case 6.1
Andy designed a web page for a product-oriented industry using CSS properties. He used several HTML tags to create the web page. He also used tables to ensure that the data is easily managed.
?Andy wants the borders to be distinctly visible for each cell in the product details table. Which of the following properties must Andy add to his code to accomplish his goal?

A. ?border-spacing: length;
B. ?border-collapse: separate;
C. ?border-collapse: collapse;
D. ?border-spacing: initial;

Answer: B

Computer Science & Information Technology

You might also like to view...

An ________ can be created so that the data in XML files can be viewed on the Web

A) XML presentation file B) XML schema C) HTML presentation file D) HTML schema

Computer Science & Information Technology

What will the following code display?

``` #include using namespace std; int getValue(int); int main() { int x = 2; cout << getValue(x) << endl; return 0; } int getValue(int num) { return num + 5; } ``` a. 5 b. 2 c. 7 d. getValue(x)

Computer Science & Information Technology