{"id":68560,"date":"2021-08-05T04:10:07","date_gmt":"2021-08-05T08:10:07","guid":{"rendered":"http:\/\/bangla.salearningschool.com\/recent-posts\/css-selectors-reference-79\/"},"modified":"2021-08-05T04:10:07","modified_gmt":"2021-08-05T08:10:07","slug":"css-selectors-reference-79","status":"publish","type":"post","link":"http:\/\/bangla.sitestree.com\/?p=68560","title":{"rendered":"CSS Selectors: Reference #79"},"content":{"rendered":"<p> CSS Selector Examples and Notes (check each line carefully and notice differences with other (esp. immediate) lines): <br \/> (Reference: CSS: The Definitive Guide: 3rd Edition: by E. A. Mayer:)<\/p>\n<ol>\n<li>Basic Rules: The following css rules apply to the corresponding html\/xml elements\/tags (left of { ) as found anywhere in the scope (html\/xml files) of these css rules<br \/>\t\t\t\t\t\thtml {color: black; } <br \/>\t\t\t\th1 {color: gray; } <br \/>\t\t\t\th2 {color: silver; }<br \/>\t\t\t\tp {font: medium Helvetica; }<br \/>\t\t\t\tQUOTE {color: gray; }<br \/>\t\t\t\tBIB {color: red; }\t\t\t<\/li>\n<li> Grouping: Applies to all html\/xml elements as mentioned before { with commas\t\t<br \/>\t\t\t\th2, p {color: gray; }<br \/>\t\t\t\tbody, table, th, td, h1, h2, h3, h4, p, pre, strong, em, b, i {color: gray; }<br \/>\t\t\t\th1, h2, h3, h4, h5, h6 {color: gray; background: white; padding: 0. 5em;}<br \/>  \t\t\t\tborder: 1px solid black; font-family: Charcoal, sans-serif; }<br \/>\t\tRemember: if you miss a semicolon (;), the rest (not the previous ones) of the css properties will be ignored\t<\/li>\n<li> Class and ID selectors: Apply to all html\/xml elements as mentioned before { with commas\t\t<br \/>\t\t\t\tp {font-weight: bold; }  : Applies to any p <br \/>\t\t\t\tp.warning {font-weight: normal; }  : Apply to any p tags with class set to  &#8216;warning&#8217; : Example: &lt;p class=&quot;warning&quot; &#8230;<br \/>\t\t\t\t*. warning {font-weight: bold; } : Apply to any html\/xml elements with class attributes set to &#8216;warning&#8217;<br \/>\t\t\t\t.warning {font-style: italic; }<br \/>\t\t\t\t span. warning {font-weight: bold; }: only span tags with class attributes set to warning<br \/>\t\t\t\t .warning.urgent {background: silver; }: Apply to elements having both values in class attributes. Example: &lt;p class=&#039;warning urgent&#039; <br \/>\t\t\t\t p.warning.help {background: red; }: Example use: &lt;p class=&quot;urgent warning help&quot; &#8230;.\n<\/li>\n<li> ID selectors: Apply to elemens having the ID as provided in css class declaration. One document can have only one ID with the same value. Though CSS cannot idenntify that. Using the same ID for multiple elements is a bad practice (will have side-effects with JS\/DOM).\t\t\t<br \/>\t\t*#first-para {font-weight: bold; }: Apply to elements with ID attributes set to first-para:  <br \/>\t\t\t\t\tExample: &lt;p id=&quot;lead-para&quot; &#8230;. <br \/>\t\t\t\t\t#lead-para {font-weight: bold; } : is also valid\n<\/li>\n<li> Attribute selectors: IE7 will support. &lt; = IE6 will not support. Supported by Safari, Opera, and Gecko based browsers\t\t\t\t<br \/>\t\th1[class] {color: silver; } : Apply to any h1 elements with class properties set to anything <br \/>\t\t\t\t\t\tplanet[ moons] {font-weight: bold; } : Great for XML <br \/>\t\t\t\t\t\t*[title] {font-weight: bold; } : Apply to any tags with title attributes <br \/>\t\t\t\t\t\ta[href] [title]{font-weight:bold;} : Apply to any a elements with both href and title attributes <br \/>\t\t\t\t\t\ta[href=&#8221;http: \/\/www.justEtc.net&#8221;] {font-weight:bold;} : Apply to any a elements with href attributes set to http:\/\/www.justEtc.net <br \/>\t\t\t\t\t\tp[ class~=&#8221;warning&#8221;] {font-weight: bold; }: Apply to any p elements with class attribute values contain &#8216;warning&#8217; <br \/>\t\t\t\t\t\timg[ title~=&#8221;Figure&#8221;] {border: 1px solid gray; } : Apply to any img elements with title attribute values contain &#8216;Figure&#8217; as a word <br \/>\t\t\t\t\t\t[ foo^=&#8221;bar&#8221;] : begins with &#8220;bar&#8221;. <br \/>\t\t\t\t\t\t[ foo$=&#8221;bar&#8221;] : ends with &#8220;bar&#8221;. <br \/>\t\t\t\t\t\t[ foo*=&#8221;bar&#8221;]: having bar as a substring <br \/>\t\t\t\t\t\tParticular attribute selectors:  *[lang| =&#8221;en&#8221;] {color: white;} :  Apply to any elements whose lang attributes are set to en or begin with en\n<\/li>\n<li> Selecting descendants  \t\t\t\t\t\t<br \/>\t\t\t\t\t\th1 em {color: gray; } : Applies to any em elements at any depth but under h1 <br \/>\t\t\t\t\t\tul ol ul em {color: gray; }: Any emphasized text under unordered list that is part of an ordered list that itself is under an unordered list <br \/>\t\t\t\t\t\th1 &gt; strong {color: red; }: Strong immediately after h1 (not to strong at any depth below h1) <br \/>\t\t\t\t\t\th1 + p {margin-top: 0; } : to both h1 and p (as siblings in a document) that have a common parent <br \/>\t\t\t\t\t\thtml &gt; body table + ul{margin-top: 1. 5em; } :\n<\/li>\n<li> Pseudo classes:\t\t\t\t\t<br \/>\t\t\t\t\t\ta: visited {color: red; } : Any visited anchor tags <br \/>\t\t\t\t\t\ta: link {} : any anchor tags <br \/>\t\t\t\t\t\ta: hover {} : any anchor tags &#8211; on mouse over <br \/>\t\t\t\t\t\ta: focus {} : any anchor tags &#8211; on focus <br \/>\t\t\t\t\t\ta: active {} : any anchor tags &#8211; on active <br \/>\t\t\t\t\t\ta#footer-copyright: visited{font-weight: bold; }: any visited anchor tag with id footer-copyright <br \/>\t\t\t\t\t\tp: first-child {font-weight: bold; } <br \/>\t\t\t\t\t\ta: visited: hover {color: maroon; } <br \/>\t\t\t\t\t\tp: first-letter {color: red; } <br \/>\t\t\t\t\t\tp: first-line {color: purple; } <br \/>\t\t\t\t\t\th2: before {content: &#8220;] ] &#8220;; color: silver; } : styling before h1 elements <br \/>\t\t\t\t\t\tbody: after {content: &#8221;  The End. &#8220;; }\n<\/li>\n<\/ol>\n<p> From: http:\/\/sitestree.com\/?p=5282<br \/> Categories:79<br \/>Tags:<br \/> Post Data:2013-01-11 18:25:33<\/p>\n<p>\t\tShop Online: <a href='https:\/\/www.ShopForSoul.com\/' target='new' rel=\"noopener\">https:\/\/www.ShopForSoul.com\/<\/a><br \/>\n\t\t(Big Data, Cloud, Security, Machine Learning): Courses: <a href='http:\/\/Training.SitesTree.com' target='new' rel=\"noopener\"> http:\/\/Training.SitesTree.com<\/a><br \/>\n\t\tIn Bengali: <a href='http:\/\/Bangla.SaLearningSchool.com' target='new' rel=\"noopener\">http:\/\/Bangla.SaLearningSchool.com<\/a><br \/>\n\t\t<a href='http:\/\/SitesTree.com' target='new' rel=\"noopener\">http:\/\/SitesTree.com<\/a><br \/>\n\t\t8112223 Canada Inc.\/JustEtc: <a href='http:\/\/JustEtc.net' target='new' rel=\"noopener\">http:\/\/JustEtc.net (Software\/Web\/Mobile\/Big-Data\/Machine Learning) <\/a><br \/>\n\t\tShop Online: <a href='https:\/\/www.ShopForSoul.com'> https:\/\/www.ShopForSoul.com\/<\/a><br \/>\n\t\tMedium: <a href='https:\/\/medium.com\/@SayedAhmedCanada' target='new' rel=\"noopener\"> https:\/\/medium.com\/@SayedAhmedCanada <\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>CSS Selector Examples and Notes (check each line carefully and notice differences with other (esp. immediate) lines): (Reference: CSS: The Definitive Guide: 3rd Edition: by E. A. Mayer:) Basic Rules: The following css rules apply to the corresponding html\/xml elements\/tags (left of { ) as found anywhere in the scope (html\/xml files) of these css &hellip; <\/p>\n<p><a class=\"more-link btn\" href=\"http:\/\/bangla.sitestree.com\/?p=68560\">Continue reading<\/a><\/p>\n","protected":false},"author":8,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[1917],"tags":[],"class_list":["post-68560","post","type-post","status-publish","format-standard","hentry","category-fromsitestree-com","item-wrap"],"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"jetpack-related-posts":[{"id":6277,"url":"http:\/\/bangla.sitestree.com\/?p=6277","url_meta":{"origin":68560,"position":0},"title":"\u09ac\u09c1\u099f\u09b8\u09cd\u099f\u09cd\u09b0\u09cd\u09af\u09be\u09aa \u099f\u09cd\u09af\u09be\u0995\u09cd\u09b8\u099f \/ \u099f\u09be\u0987\u09aa\u09cb\u0997\u09cd\u09b0\u09be\u09ab\u09bf (Bootstrap Text\/Typography)","author":"Author-Check- Article-or-Video","date":"February 12, 2015","format":false,"excerpt":"Bootstrap \u098f\u09b0 \u09aa\u09cd\u09b0\u09be\u09a5\u09ae\u09bf\u0995 (default ) \u09ab\u09a8\u09cd\u099f \u09b8\u09be\u0987\u099c \u09b9\u09b2 \u09e7\u09ea \u09aa\u09bf\u0995\u09cd\u09b8\u09c7\u09b2, \u09af\u09be\u09b0 \u09aa\u09cd\u09b0\u09a4\u09bf \u09b2\u09be\u0987\u09a8\u09c7\u09b0 \u0989\u099a\u09cd\u099a\u09a4\u09be (height) \u09e7.\u09ea\u09e8\u09ee \u0964 \u098f\u099f\u09be <body> \u098f\u09ac\u0982 \u09b8\u09ae\u09b8\u09cd\u09a4 \u09aa\u09cd\u09af\u09b0\u09be\u0997\u09cd\u09b0\u09be\u09ab\u09c7 \u09ac\u09cd\u09af\u09ac\u09b9\u09be\u09b0 \u0995\u09b0\u09be \u09b9\u09df \u0964 \u0989\u09aa\u09b0\u09a8\u09cd\u09a4\u09c1, \u09b8\u0995\u09b2 <p> elements \u098f\u09b0 \u098f\u0995\u099f\u09bf bottom margin \u09a5\u09be\u0995\u09c7 \u09af\u09c7\u099f\u09be \u09a4\u09be\u09a6\u09c7\u09b0 \u09a8\u09bf\u09b0\u09cd\u09a3\u09bf\u09a4 line-height \u098f\u09b0 \u09b8\u09ae\u09be\u09a8 \u0985\u09a5\u09ac\u09be \u0985\u09b0\u09cd\u09a7\u09c7\u0995 (\u09a1\u09bf\u09ab\u09b2\u09cd\u099f \u09b9\u09bf\u09b8\u09c7\u09ac\u09c7 10px) \u09ac\u09c1\u099f\u09b8\u09cd\u099f\u09cd\u09b0\u09cd\u09af\u09be\u09aa \u09ac\u09a8\u09be\u09ae \u09ac\u09cd\u09b0\u09be\u0989\u099c\u09be\u09b0 \u09a1\u09bf\u09ab\u09b2\u09cd\u099f\u00a0\u2026","rel":"","context":"In &quot;\u09ac\u09c1\u099f\u09b8\u09cd\u099f\u09cd\u09b0\u09cd\u09af\u09be\u09aa \u09e9 \u099f\u09bf\u0989\u099f\u09cb\u09b0\u09bf\u09df\u09be\u09b2 (Bootstrap 3 Tutorial)&quot;","block_context":{"text":"\u09ac\u09c1\u099f\u09b8\u09cd\u099f\u09cd\u09b0\u09cd\u09af\u09be\u09aa \u09e9 \u099f\u09bf\u0989\u099f\u09cb\u09b0\u09bf\u09df\u09be\u09b2 (Bootstrap 3 Tutorial)","link":"http:\/\/bangla.sitestree.com\/?cat=178"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":7608,"url":"http:\/\/bangla.sitestree.com\/?p=7608","url_meta":{"origin":68560,"position":1},"title":"\u09b8\u09bf\u098f\u09b8\u098f\u09b8 \u09b9\u09b2\u09cb Cascading Style Sheets.","author":"Author-Check- Article-or-Video","date":"March 27, 2015","format":false,"excerpt":"\u09b2\u09c7\u0996\u0995\u0983 \u09ae\u09cb\u0983\u09ae\u09bf\u09a8\u09b9\u09be\u099c\u09c1\u09b2 \u0987\u09b8\u09b2\u09be\u09ae \u09b8\u09bf\u098f\u09b8\u098f\u09b8 \u09b9\u09b2\u09cb Cascading Style Sheets. \u0964 \u09b8\u09bf\u098f\u09b8\u098f\u09b8 \u09ab\u09be\u0987\u09b2 \u09b8\u09c7\u09ad \u0995\u09b0\u09a4\u09c7 \u09b9\u09df .css \u09a6\u09bf\u09df\u09c7\u0964 \u09b8\u09bf\u098f\u09b8\u098f\u09b8 \u09ac\u09cd\u09af\u09ac\u09b9\u09be\u09b0 \u0995\u09b0\u09be \u09b9\u09df \u098f\u0987\u099a\u099f\u09bf\u098f\u09ae\u098f\u09b2 \u09aa\u09c7\u099c\u099f\u09c7 \u0995\u09c7 \u0986\u09b0\u0993 \u09a6\u09c3\u09b7\u09cd\u099f\u09bf\u09a8\u09a8\u09cd\u09a6\u09a8 \u0995\u09b0\u09be \u099c\u09a8\u09cd\u09af\u0964 \u09b8\u09bf\u098f\u09b8\u098f\u09b8 \u09e9 \u09a6\u09b0\u09a8\u09c7 \u09b9\u09df\u0964 \u09e7) \u0987\u09a8\u09cd\u099f\u09be\u09b0\u09a8\u09be\u09b2 \u09b8\u09bf\u098f\u09b8\u098f\u09b8 \u0964 \u09e8) \u098f\u0995\u09cd\u09b8\u099f\u09be\u09b0\u09cd\u09a8\u09be\u09b2 \u09b8\u09bf\u098f\u09b8\u098f\u09b8 \u0964 \u09e9) \u0987\u09a8\u09b2\u09be\u0987\u09a8 \u09b8\u09bf\u098f\u09b8\u098f\u09b8 \u0964 \u0987\u09a8\u09cd\u099f\u09be\u09b0\u09a8\u09be\u09b2 \u09b8\u09bf\u098f\u09b8\u098f\u09b8\u0983 \u09af\u09c7\u0995\u09cb\u09a8 \u098f\u0987\u099a\u099f\u09bf\u098f\u09ae\u098f\u09b2 \u09a1\u0995\u09c1\u09ae\u09c7\u09a8\u09cd\u099f\u09c7 <head><\/head> \u098f\u09b0\u2026","rel":"","context":"In &quot;\u09b8\u09bf \u098f\u09b8 \u098f\u09b8 \u099f\u09bf\u0989\u099f\u09cb\u09b0\u09bf\u09df\u09be\u09b2 (css tutorial)&quot;","block_context":{"text":"\u09b8\u09bf \u098f\u09b8 \u098f\u09b8 \u099f\u09bf\u0989\u099f\u09cb\u09b0\u09bf\u09df\u09be\u09b2 (css tutorial)","link":"http:\/\/bangla.sitestree.com\/?cat=174"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":6158,"url":"http:\/\/bangla.sitestree.com\/?p=6158","url_meta":{"origin":68560,"position":2},"title":"\u09b8\u09bf \u098f\u09b8 \u098f\u09b8 \u09b8\u09bf\u09b2\u09c7\u0995\u09cd\u099f\u09b0 (CSS Selectors)","author":"Author-Check- Article-or-Video","date":"February 8, 2015","format":false,"excerpt":"\u098f\u0987\u099a\u099f\u09bf\u098f\u09ae\u098f\u09b2 \u098f\u09b0 \u09b8\u09ac element \u0997\u09c1\u09b2\u09cb\u0995\u09c7 manipulate \u0995\u09b0\u09be\u09b0 \u099c\u09a8\u09cd\u09af \u09b8\u09bf\u098f\u09b8\u098f\u09b8 \u098f\u09b0 \u09ac\u09bf\u09ad\u09bf\u09a8\u09cd\u09a8 selector \u09ac\u09cd\u09af\u09ac\u09b9\u09be\u09b0 \u0995\u09b0\u09be \u09b9\u09df\u0964 id , class, type, attribute \u0987\u09a4\u09cd\u09af\u09be\u09a6\u09bf\u09b0 \u0989\u09aa\u09b0 \u09ad\u09bf\u09a4\u09cd\u09a4\u09bf \u0995\u09b0\u09c7 \u098f\u0987\u099a\u099f\u09bf\u098f\u09ae\u098f\u09b2 \u098f\u09b2\u09bf\u09ae\u09c7\u09a8\u09cd\u099f\u0997\u09c1\u09b2\u09cb \u0996\u09cb\u0981\u099c\u09be \u09ac\u09be \u09a8\u09bf\u09b0\u09cd\u09ac\u09be\u099a\u09a8 \u0995\u09b0\u09be\u09b0 \u099c\u09a8\u09cd\u09af \u09b8\u09bf\u098f\u09b8\u098f\u09b8 \u09b8\u09bf\u09b2\u09c7\u0995\u09cd\u099f\u09b0 \u09ac\u09cd\u09af\u09ac\u09b9\u09be\u09b0 \u0995\u09b0\u09be \u09b9\u09df\u0964 \u098f\u09b2\u09bf\u09ae\u09c7\u09a8\u09cd\u099f \u09b8\u09bf\u09b2\u09c7\u0995\u09cd\u099f\u09b0 \u098f\u09b2\u09bf\u09ae\u09c7\u09a8\u09cd\u099f \u09b8\u09bf\u09b2\u09c7\u0995\u09cd\u099f\u09b0 \u098f\u09b2\u09bf\u09ae\u09c7\u09a8\u09cd\u099f\u09c7\u09b0\u00a0\u09a8\u09be\u09ae\u09c7\u09b0 \u0989\u09aa\u09b0 \u09ad\u09bf\u09a4\u09cd\u09a4\u09bf \u0995\u09b0\u09c7 \u0989\u09aa\u09be\u09a6\u09be\u09a8 \u09a8\u09bf\u09b0\u09cd\u09ac\u09be\u099a\u09a8 \u0995\u09b0\u09c7\u0964 \u0986\u09ae\u09b0\u09be \u09b8\u0995\u09b2 <p>\u2026","rel":"","context":"In &quot;\u09b8\u09bf \u098f\u09b8 \u098f\u09b8 \u099f\u09bf\u0989\u099f\u09cb\u09b0\u09bf\u09df\u09be\u09b2 (css tutorial)&quot;","block_context":{"text":"\u09b8\u09bf \u098f\u09b8 \u098f\u09b8 \u099f\u09bf\u0989\u099f\u09cb\u09b0\u09bf\u09df\u09be\u09b2 (css tutorial)","link":"http:\/\/bangla.sitestree.com\/?cat=174"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":8152,"url":"http:\/\/bangla.sitestree.com\/?p=8152","url_meta":{"origin":68560,"position":3},"title":"jQuery \u09a6\u09bf\u09df\u09c7 CSS Class \u098f\u09b0 \u09ae\u09be\u09a8 \u09ac\u09c7\u09b0 \u0995\u09b0\u09be \u098f\u09ac\u0982 \u0985\u09b0\u09cb\u09aa \u0995\u09b0\u09be","author":"Author-Check- Article-or-Video","date":"March 31, 2015","format":false,"excerpt":"\u099c\u09c7\u0995\u09c1\u09df\u09cd\u09af\u09c7\u09b0\u09bf (jQuery) \u2013 \u0997\u09c7\u099f \u0993 \u09b8\u09c7\u099f \u09b8\u09bf\u098f\u09b8\u098f\u09b8 \u0995\u09cd\u09b2\u09be\u09b8\u09c7\u09b8 \u09ae\u09cb: \u0986\u09b8\u09be\u09a6\u09c1\u099c\u09cd\u099c\u09be\u09ae\u09be\u09a8 \u09ab\u09cd\u09b0\u09bf\u09b2\u09cd\u09af\u09be\u09a8\u09cd\u09b8\u09be\u09b0 (\u0993\u09df\u09c7\u09ac \u09a1\u09bf\u099c\u09be\u0987\u09a8\u09be\u09b0 \u098f\u09ac\u0982 \u09a1\u09c7\u09ad\u09c7\u09b2\u09aa\u09be\u09b0) \u00a0 JQuery \u09b8\u0999\u09cd\u0997\u09c7, \u098f\u09b2\u09bf\u09ae\u09c7\u09a8\u09cd\u099f\u09c7\u09b0 \u09b8\u09bf\u098f\u09b8\u098f\u09b8 \u09ae\u09cd\u09af\u09be\u09a8\u09bf\u09aa\u09c1\u09b2\u09c7\u099f \u09b8\u09b9\u099c\u0964 \u00a0 jQuery \u09ae\u09cd\u09af\u09be\u09a8\u09bf\u09aa\u09c1\u09b2\u09c7\u099f\u09bf\u0982 \u09b8\u09bf\u098f\u09b8\u098f\u09b8 jQuery \u098f\u09b0 CSS \u09ae\u09cd\u09af\u09be\u09a8\u09bf\u09aa\u09c1\u09b2\u09c7\u09b6\u09a8 \u099c\u09a8\u09cd\u09af \u09ac\u09bf\u09ad\u09bf\u09a8\u09cd\u09a8 \u09aa\u09a6\u09cd\u09a7\u09a4\u09bf \u0986\u099b\u09c7\u0964 \u0986\u09ae\u09b0\u09be \u09a8\u09bf\u09ae\u09cd\u09a8\u09b2\u09bf\u0996\u09bf\u09a4 \u09aa\u09a6\u09cd\u09a7\u09a4\u09bf \u09aa\u09b0\u09cd\u09af\u09ac\u09c7\u0995\u09cd\u09b7\u09a3 \u0995\u09b0\u09ac\u09cb: addClass () - \u09a8\u09bf\u09b0\u09cd\u09ac\u09be\u099a\u09bf\u09a4 \u098f\u09b2\u09bf\u09ae\u09c7\u09a8\u09cd\u099f \u098f\u0995 \u09ac\u09be \u098f\u0995\u09be\u09a7\u09bf\u0995 \u0995\u09cd\u09b2\u09be\u09b8 \u09af\u09c1\u0995\u09cd\u09a4 \u0995\u09b0\u09c7\u2026","rel":"","context":"In &quot;jQuery-001 \u0964 \u099c\u09c7 \u0995\u09c1\u09df\u09c7\u09b0\u09bf - \u09e6\u09e6\u09e7&quot;","block_context":{"text":"jQuery-001 \u0964 \u099c\u09c7 \u0995\u09c1\u09df\u09c7\u09b0\u09bf - \u09e6\u09e6\u09e7","link":"http:\/\/bangla.sitestree.com\/?cat=152"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":8266,"url":"http:\/\/bangla.sitestree.com\/?p=8266","url_meta":{"origin":68560,"position":4},"title":"\u0986\u099c \u0986\u09ae\u09b0\u09be \u099c\u09c7\u0995\u09cb\u09df\u09c7\u09b0\u09bf \u09a6\u09bf\u09df\u09c7 \u0993\u09df\u09c7\u09ac \u09aa\u09c7\u099c \u098f\u09b0 \u0989\u09aa\u09be\u09a6\u09be\u09a8 (HTML Elements) \u0997\u09c1\u09b2\u09cb\u09b0 CSS property (such as display, font-height) \u09aa\u09b0\u09bf\u09ac\u09b0\u09cd\u09a4\u09a8 \u0995\u09b0\u09be \u09b6\u09bf\u0996\u09ac\u09cb","author":"Author-Check- Article-or-Video","date":"March 31, 2015","format":false,"excerpt":"\u0986\u099c \u0986\u09ae\u09b0\u09be \u099c\u09c7\u0995\u09cb\u09df\u09c7\u09b0\u09bf \u09a6\u09bf\u09df\u09c7 \u0993\u09df\u09c7\u09ac \u09aa\u09c7\u099c \u098f\u09b0 \u0989\u09aa\u09be\u09a6\u09be\u09a8 (HTML Elements) \u0997\u09c1\u09b2\u09cb\u09b0 CSS property (such as display, font-height) \u09aa\u09b0\u09bf\u09ac\u09b0\u09cd\u09a4\u09a8 \u0995\u09b0\u09be \u09b6\u09bf\u0996\u09ac\u09cb \u0964 \u09b8\u09be\u09a5\u09c7 \u09b8\u09be\u09a5\u09c7 \u0989\u09aa\u09be\u09a6\u09be\u09a8 \u0997\u09c1\u09b2\u09cb\u09b0 CSS class \u09aa\u09b0\u09bf\u09ac\u09b0\u09a4\u09a8 \u0995\u09b0\u09ac\u09cb \u09af\u09c7\u09ae\u09a8 \u09a8\u09a4\u09c1\u09a8 css class \u09af\u09cb\u0997 \u0995\u09b0\u09be\u0964 \u09b2\u09c7\u0996\u09be\u0983 \u09ae\u09cb\u09b8\u09cd\u09a4\u09be\u09ab\u09bf\u099c\u09c1\u09b0 \u09ab\u09bf\u09b0\u09cb\u099c \u0964 \u0995\u09c7\u09ae\u09a8 \u0986\u099b\u09c7\u09a8 \u09b8\u09ac\u09be\u0987? \u0986\u099c \u0986\u09ae\u09b0\u09be \u099c\u09c7\u0995\u09cb\u09df\u09c7\u09b0\u09bf \u09a6\u09bf\u09df\u09c7 \u09b8\u09bf\u098f\u09b8\u098f\u09b8 \u0995\u09cd\u09b2\u09be\u09b8 \u09aa\u09b0\u09bf\u099a\u09be\u09b2\u09a8\u09be \u0995\u09b0\u09be\u2026","rel":"","context":"In &quot;JQuery : \u099c\u09c7\u0995\u09c1\u098f\u09b0\u09bf&quot;","block_context":{"text":"JQuery : \u099c\u09c7\u0995\u09c1\u098f\u09b0\u09bf","link":"http:\/\/bangla.sitestree.com\/?cat=500"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":8140,"url":"http:\/\/bangla.sitestree.com\/?p=8140","url_meta":{"origin":68560,"position":5},"title":"\u098f\u0987\u099a\u099f\u09bf\u098f\u09ae\u098f\u09b2 \u09b6\u09bf\u09b0\u09cb\u09a8\u09be\u09ae (HTML Headings)","author":"Author-Check- Article-or-Video","date":"March 17, 2015","format":false,"excerpt":"HTML Headings HTML Documents \u098f\u09b0 \u0995\u09cd\u09b7\u09c7\u09a4\u09cd\u09b0\u09c7 Headings \u0996\u09c1\u09ac\u0987 \u0997\u09c1\u09b0\u09c1\u09a4\u09cd\u09ac\u09aa\u09c2\u09b0\u09cd\u09a3\u0964 <h1> \u09a5\u09c7\u0995\u09c7 <h6> tags \u09a6\u09cd\u09ac\u09be\u09b0\u09be Heading \u0995\u09c7 \u09a4\u09c1\u09b2\u09c7 \u09a7\u09b0\u09be \u09b9\u09df\u0964 <h1> tag \u09a6\u09cd\u09ac\u09be\u09b0\u09be \u09b8\u09ac\u099a\u09c7\u09df\u09c7 \u0997\u09c1\u09b0\u09c1\u09a4\u09cd\u09ac\u09aa\u09c2\u09b0\u09cd\u09a3 \u0993 <h6> tag \u09a6\u09cd\u09ac\u09be\u09b0\u09be \u0985\u09aa\u09c7\u0995\u09cd\u09b7\u09be\u0995\u09c3\u09a4 \u0995\u09ae \u0997\u09c1\u09b0\u09c1\u09a4\u09cd\u09ac\u09aa\u09c2\u09b0\u09cd\u09a3 Heading \u0995\u09c7 \u09a4\u09c1\u09b2\u09c7 \u09a7\u09b0\u09be \u09b9\u09df\u0964 \u00a0 \u0989\u09a6\u09be\u09b9\u09b0\u09a3\u09b8\u09cd\u09ac\u09b0\u09c2\u09aa\u0983 <h1> \u098f\u0987 \u09b9\u09b2 \u098f\u0995\u099f\u09bf \u09b6\u09bf\u09b0\u09cb\u09a8\u09be\u09ae <\/h1> <h2> \u098f\u0987 \u09b9\u09b2 \u098f\u0995\u099f\u09bf \u09b6\u09bf\u09b0\u09cb\u09a8\u09be\u09ae <\/h2>\u2026","rel":"","context":"In &quot;\u098f\u0987\u099a\u099f\u09bf\u098f\u09ae\u098f\u09b2 HTML&quot;","block_context":{"text":"\u098f\u0987\u099a\u099f\u09bf\u098f\u09ae\u098f\u09b2 HTML","link":"http:\/\/bangla.sitestree.com\/?cat=494"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]}],"_links":{"self":[{"href":"http:\/\/bangla.sitestree.com\/index.php?rest_route=\/wp\/v2\/posts\/68560","targetHints":{"allow":["GET"]}}],"collection":[{"href":"http:\/\/bangla.sitestree.com\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"http:\/\/bangla.sitestree.com\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"http:\/\/bangla.sitestree.com\/index.php?rest_route=\/wp\/v2\/users\/8"}],"replies":[{"embeddable":true,"href":"http:\/\/bangla.sitestree.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=68560"}],"version-history":[{"count":0,"href":"http:\/\/bangla.sitestree.com\/index.php?rest_route=\/wp\/v2\/posts\/68560\/revisions"}],"wp:attachment":[{"href":"http:\/\/bangla.sitestree.com\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=68560"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"http:\/\/bangla.sitestree.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=68560"},{"taxonomy":"post_tag","embeddable":true,"href":"http:\/\/bangla.sitestree.com\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=68560"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}