Computer >> कंप्यूटर >  >> प्रोग्रामिंग >> CSS

छद्म तत्व और सीएसएस वर्ग

<घंटा/>

सीएसएस छद्म तत्वों को तत्वों पर भी लागू किया जा सकता है लेकिन सीएसएस कक्षाओं पर भी लागू किया जा सकता है।

उदाहरण

आइए, CSS Classes पर CSS Pseudo Elements का उपयोग करने का एक उदाहरण देखें -

<!DOCTYPE html>
<html>
<head>
<title>CSS Pseudo Elements and CSS Classes</title>
<style>
form {
   width:70%;
   margin: 0 auto;
   text-align: center;
}
* {
   padding: 2px;
   margin:5px;
   box-sizing: border-box;
}
input[type="button"] {
   border-radius: 10px;
}
.child{
   line-height: .1em;
   border: 4px solid black;
}
::selection{
   color:white;
}
.child:nth-child(1), h1::selection{
   background-color: #FF8A00;
}
.child:nth-child(2), div::selection{
   background-color: #F44336;
}
.child:nth-child(3), p::selection{
   background-color: #C303C3;
}
.child:nth-child(4), article::selection{
   background-color: #4CAF50;
}
.child:nth-child(5), code::selection{
   background-color: #FEDC11;
}
</style>
</head>
<body>
<form>
<fieldset>
<legend>CSS Pseudo Elements and CSS Classes</legend>
<div id="container">
<h1>A Heading</h1>
<div>Welcome to DIV World</div>
<p>Every one is welcome in this town. Make yourself comfertable</p>
<article>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,
quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo
consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse
cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non
proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</article>
<code>function helloWorld(){ document.write("Hello World");}</code>
<div><span class="child">h1</span><span class="child">div</span><span class="child">p</span><span class="child">article</span><span class="child">code</span></div>
</div>
</body></html>

आउटपुट

यह निम्नलिखित आउटपुट देगा -

प्रारंभिक लेआउट -

छद्म तत्व और सीएसएस वर्ग

तत्व और
तत्व का चयन -

छद्म तत्व और सीएसएस वर्ग

छद्म तत्व और सीएसएस वर्ग

तत्व और <लेख> तत्व का चयन -

छद्म तत्व और सीएसएस वर्ग

छद्म तत्व और सीएसएस वर्ग

तत्व का चयन करना -

छद्म तत्व और सीएसएस वर्ग


  1. छद्म वर्ग और सभी सीएसएस वर्ग

    छद्म-वर्ग कीवर्ड का उपयोग चयनकर्ता की एक विशेष स्थिति को निर्दिष्ट करने के लिए किया जाता है जिसमें इसे जोड़ा जाता है। यह हमें अधिक नियंत्रण देता है और अब हम एक चयनकर्ता को लक्षित कर सकते हैं जब वह विशिष्ट स्थिति में हो जैसे:होवर, चेक किया गया, देखा गया आदि। सीएसएस में छद्म वर्गों को प्रदर्शित करने

  1. सीएसएस में छद्म-वर्ग और छद्म-तत्व के बीच अंतर

    छद्म श्रेणी एक छद्म वर्ग एक चयनकर्ता की स्थिति का प्रतिनिधित्व करता है जैसे:होवर, सक्रिय, अंतिम-चाइल्ड, आदि। ये सिंगल कोलन (:) से शुरू होते हैं। CSS छद्म वर्ग का सिंटैक्स इस प्रकार है - :pseudo-class{ attribute: /*value*/ } छद्म तत्व इसी तरह, एक छद्म तत्व का उपयोग आभासी तत्वों जैसे ::के बाद, :

  1. CSS के साथ चाइल्ड एलिमेंट्स का चयन

    CSS चाइल्ड कॉम्बिनेटर का उपयोग मूल तत्व के सभी चाइल्ड तत्वों को चुनने के लिए किया जाता है। CSS चाइल्ड कॉम्बिनेटर का सिंटैक्स इस प्रकार है चयनकर्ता {विशेषता:/*मान*/} CSS वंशज संयोजक का उपयोग मूल तत्व के सभी वंशजों को चुनने के लिए किया जाता है CSS वंशज संयोजक का सिंटैक्स इस प्रकार है चयनकर्ता चयनक