page-banner
Chapter-4 CSS
Q36.
निम्नलिखित में से कौन सा एक सही CSS सिंटैक्स है?<break-line><break-line>Which of the following is a correct CSS Syntax?
A. {body; color:orange;}
B. {body: color=orange;}
C. body:color=orange;
D. body{color:orange;}
View Answer
Q37.
एक एंकर एलिमेंट का निम्न में से कौन सा प्रोपर्टी इंगित करता है कि उपयोगकर्ता वर्तमान में एक एलिमेंट पर क्लिक कर रहा है?<break-line><break-line>Which of the following properties of an anchor element indicates that the user is currently clicking on an element?
A. :link
B. :visited
C. :hover
D. :active
View Answer
Q38.
आप सभी पैराग्राफ एलिमेंट को 'ग्रे' रंग में कैसे बनायेंगे?<break-line><break-line>How will you make all paragraph elements 'GREY' in color?
A. p.all {color: grey;}
B. p.all {color: #990000;}
C. all.p {color: #998877;}
D. p {color: grey;}
View Answer
Q39.
इमेज को टेक्स्ट से घेरने के लिए किस CSS प्रॉपर्टी का इस्तेमाल करना चाहिए?<break-line><break-line>Which CSS property should one use to encircle an image with text?
A. Float
B. Push
C. Align
D. wrap
View Answer
Q40.
नीचे दिए गए कोड में किस प्रकार का CSS प्रयोग किया जाता है?<break-line><break-line>Which type of CSS is used in the code below?<pre><code><p style = "border:2px solid red;"></code></pre>
A. External CSS
B. Internal CSS
C. Inline CSS
D. None of these
View Answer