InterviewSolution
Saved Bookmarks
| 1. |
Which character is used to differentiating between choices to list items?(a) ‘|’(b) ‘>’(c) ‘#’(d) ‘$’I have been asked this question in my homework.My question is based upon Numbered, Bullet and Definition Lists topic in chapter Text, Links & Lists of HTML |
|
Answer» RIGHT option is (a) ‘|’ The explanation: ‘|’, a pipe character is used to differentiate between choices. It is a separating character. It can be emulated by adding BORDERS to list ITEMS. E.g. #pipe ul li.first {margin-left: 0; list-style: none; margin-left: none; display: inline; }. Here we have added class=”first” so that it does not end up with a BORDER on the left side. |
|