‎‎تگ متن كوچكHTML <small> Tag -‎

Previous >    <Next  

‎‎مثال ـ تعريف متن كوچك

<p>This is some normal text.</p>
<p><small>This is some smaller text.</small></p>

--(go to editor for change code and run)

‎‎تعريف وكاربردDefinition and Usage -‎

‎با تگ‎<small>‎ كوچكترين متن راتعريف ميكنند .متني مثل ‎"copyright‎"‎وبقيه نظرات ‎جانبي

‎‎تگ فوق منسوخ نشده ، اما ميتوان با امكاناتCSS وموارد مشابه ، بامكان غني تر دست يافت .

‎‎پشتيباني مرورگرBrowser Support -‎

‎Element‎ Chorome Edge Firefox Safari Opera
‎‎<small>‎‎ ‎Yes‎ ‎Yes‎ ‎Yes‎ ‎Yes‎ ‎Yes‎

‎‎ويژگي هاي جهانيGlobal Attributes -‎

‎‎تگ‎<small>‎ از ويژگي هاي جهانيHTML پيروي ميكند.

‎‎ويژگي هاي رويداديEvent Attributes -‎

‎‎تگ فوق همچنين از ويژگي هاي رويدادي پيروي ميكند.

‎‎مثال بيشتر ـ تعريف متن كوچك باCSS

<html>
<head>
<style>span.small {
  font-size: smaller;
}
</style></head>
<body>

<p>This is some normal text.</p>
<p>class="small">This is some smaller text.</p>

</body>
</html> 

--(go to editor for change code and run)

‎‎تنظيمات پيش فرضDefault CSS Settings -‎

‎‎اغلب مرورگرها نمايش عنصر‎<small>‎ مطابق تنظيمات پيش فرضي زيرانجام ميدهند.

small {
  font-size: smaller;
}

--(go to editor for change code and run)

‎مرجع كامل تگهايHTML
‎مرجع كامل ويژگيهايHTML


Previous >    <Next