Saved Bookmarks
| 1. |
Observe the following code carefully and answer the questions that follow:Predict the output of the above code while explaining the effects applied on <Li> in the CSS code. |
|
Answer» The output of the above code will be: The Dos and Don'ts of network security As per the output it is evident that the list elements specified as li have been displayed in Lower case due to : text-transform: lowercase; Also, there is a space of 10 pixels between each letter due to : letter-spacing : 10 px ; |
|