Emmanuel's answers to the Bootstrap Exercises

  1. The table now have some borderlines and the elements of the table are now well distributed (separation).
  2. This statement adds margins (separations between the web-page window border and the text).
  3. Selector:
    .table th
  4. This selector refers to the th elements (table headers) within an element whose class attribute contains the value "table".
  5. The following property:
    font-weight:bold;
  6. The background color of some rows changed: they are now gray. They are interspersed: one greyed, one not greyed.
  7. Selector:
    .table-striped tbody tr:nth-type(odd)
    The shaded rows (the odd ones) have the aforementioned selector and the background-color property, the others not.
  8. The table header now has an orange background.
  9. Property:
    text-transform: uppercase;
  10. Properties specified by Bootstrap: Properties specified by Chrome (the user agent):
  11. Property name 1: font-size 
    Property name 2: font-weight
  12. The image is now right-aligned and it is sorrounded by text.
  13. Rule:
    .float-right{
    margin-left: 20px;
    }
  14. Properties:
  15. It is inherited from body.
  16. The text is now smaller and italized.
  17. The text is bigger.
  18. The character is the "em dash", which is a long dash encoded as U+2014.