click below
click below
Normal Size Small Size show me how
css week 4
| Question | Answer |
|---|---|
| img {opacity: 0.5;} | Specify the transparency of an image. |
| img:hover { opacity: 1;} | Specify the transparency of an image on mouse over. |
| How many types of navigation bar are there? | Two(2) Types. Horizontal and Vertical Navigation bar . |
| list-style-type: none; | Create a navigation bar without bullets |
| .active { color: white; } | Set a specific style for the active tab |
| position: fixed; top: 0; | Create a top fixed position |
| position: fixed; bottom: 0; | Create a bottom fixed potition |
| How many types of Dropdowns are there ? | Three(3) types. |
| opacity: 0; transition: opacity 3s; .. visibility: visible; opacity:1; | The transparency/opacity of the tooltip text increase gradely, from 0 to 1 in 3 seconds. |