Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

<style>

 

{{HTMLRef}}

এইচ টি এম এল <style> উপাদান একটি ডকুমেন্টের একটি দলিল, বা অংশ জন্য স্টাইল তথ্য রয়েছে ডিফল্টরূপে, যে উপাদান ভিতরে লেখা শৈলী নির্দেশাবলী সিএসএস হবে বলে আশা করা হয়
Content categories Metadata content, and if the scoped attribute is present: flow content.
Permitted content Text content matching the type attribute, that is text/css.
Tag omission Neither tag is omissible.
Permitted parent elements If the scoped attribute is not present: where metadata content is expected or in a <noscript> element itself a child of <head> element.
If the scoped attribute is present: where flow content is expected, but before any other flow content other than inter-element whitespace and <style> elements, and not as the child of an element whose content model is transparent.
DOM interface HTMLStyleElement

 

আরোপ 

এই উপাদান গ্লোবাল গুণাবলী রয়েছে

{{htmlattrdef ("টাইপ")}}
     এই বৈশিষ্ট্য MIME ধরণ হিসেবে স্টাইলিং ভাষা (অক্ষরসেট উল্লেখ করা উচিত নয়) সংজ্ঞায়িত করে. এই বৈশিষ্ট্য এটি লেখার তাহলে টেক্সট / CSS এর ঐচ্ছিক এবং ডিফল্ট হয়.
{{htmlattrdef ("মিডিয়া")}}
     এই বৈশিষ্ট্য শৈলী প্রয়োগ করা উচিত, যা মিডিয়া সংজ্ঞায়িত করে. এটা মূল্য অ্যাট্রিবিউট অনুপস্থিত থাকে সব থেকে যা ডিফল্ট একটি মিডিয়া কোয়েরি, হয়
scoped
এই বৈশিষ্ট্য উপস্থিত থাকলে, তারপর শৈলী শুধুমাত্র তার মূল উপাদান প্রযোজ্য. অনুপস্থিতিতে শৈলী সম্পূর্ণ নথিতে প্রয়োগ
{{htmlattrdef ("শিরোনাম")}}
     বিকল্প স্টাইল শীট সেট উল্লেখ করা হয়।
{{htmlattrdef ("প্রতিবন্ধী")}}
     সেট করেন তাহলে, নিষ্ক্রিয় {{domxref ("নথি", "নথি")}} উপাদান মধ্যে নির্দিষ্ট শৈলী নিয়ম, (প্রযোজ্য নয়)

 উদাহরণ

 একটি সহজ স্টাইলশীট

<style type="text/css">
body {
  color:red;
}
</style> 

 একটি scoped স্টাইলশীট

<article>
  <div>The scoped attribute allows for you to include style elements mid-document.
   Inside rules only apply to the parent element.</div>
  <p>This text should be black. If it is red your browser does not support the scoped attribute.</p>
  <section>
    <style scoped>
      p { color: red; }
    </style>
    <p>This should be red.</p>
  </section>
</article>

 সরাসরি  নমুনা

 বিশেষ উল্লেখ

Specification Status Comment
WHATWG HTML Living Standard
The definition of 'style' in that specification.
Living Standard No change from HTML5.
HTML5
The definition of 'style' in that specification.
Recommendation Added the scoped attribute
HTML 4.01 Specification
The definition of 'style' in that specification.
Recommendation  

 ব্রাউজার উপযুক্ততা

Feature Chrome Firefox (Gecko) Internet Explorer Opera Safari (WebKit)
Basic support (Yes) 1.0 (1.7 or earlier) (Yes) (Yes) (Yes)
scoped 20[1] 21.0 (21.0)[2] Not supported Not supported Not supported
Feature Android Firefox Mobile (Gecko) IE Phone Opera Mobile Safari Mobile
Basic support (Yes) 1.0 (1.7 or earlier) (Yes) (Yes) (Yes)
scoped ? 25.0 (25.0)[2] Not supported Not supported Not supported

[1] Supported in Chrome 20+ to 34 by enabling the "Enable <style scoped>" or "experimental WebKit features" flag in chrome://flags. Removed in Chrome 35+ due to code complexity.

 [2] গেকো 20 এবং পরে বাস্তবায়ন: সুযোগ ছদ্ম-শ্রেণীর, কিন্তু পছন্দের layout.css.scope-pseudo.enabled সত্যতে সেট করা আবশ্যক এই রাত্রিকালীন এবং অররা পরীক্ষা সংস্করণে ডিফল্টরূপে শুধুমাত্র কেস।

 

আরো দেখুন

     এক্সটার্নাল স্টাইল শীট ব্যবহার করার অনুমতি{{HTMLElement ("লিঙ্ক")}} উপাদান

ডকুমেন্ট ট্যাগ এবং অবদানকারী

ট্যাগ: 
 Contributors to this page: hmmonir
 সর্বশেষ হালনাগাদ করেছেন: hmmonir,