Question: Consider the following font definition: font-weight:normal What is the other way of getting the same result?
A
B
C
D
font-weight:100
B
font-weight:900
C
font-weight:400
D
ont-weight:700
Note: Not available
div[class^="stronger"] { } {em ... }Which of the following statements is true?
<style> .foo { width:100px; height:50px; border-width:3px; -webkit-border-image: -webkit-gradient(linear, 0 0, 0 100%, from(black), to(red)) 1 100%; -webkit-border-image: -webkit-linear-gradient(black, red) 1 100%; -o-border-image: -o-linear-gradient(black, red)) 1 100%; -moz-border-image: -moz-linear-gradient(black, red) 1 100%; } </style> <div class="foo">Lorem</div>
-moz-box-shadow: 0px 4px 4px #000; -webkit-box-shadow: 0px 4px 4px #000; box-shadow-bottom: 5px #000;However, this produces shadows on the rest of the element. Which of the following code snippets will correct the issue?
border-bottom:5px solid #ffffff; -webkit-box-shadow: 0px 5px #000000; -moz-box-shadow: 0px 5px #000000; box-shadow: 0px 5px #000000;
-webkit-box-shadow: 0 4px 4px -2px #000000; -moz-box-shadow: 0 4px 4px -2px #000000; box-shadow: 0 4px 4px -2px #000000;
-webkit-box-shadow: 0 4px 4px -2px inside #000000; -moz-box-shadow: 0 4px 4px -2px inside #000000; box-shadow: 0 4px 4px -2px inside #000000;