‎‎تگ كدHTML <code> Tag -‎

Previous >    <Next  

‎‎مثال ـ متني بعنوان كد كامپيوتري تعريف شده است.

<p>The HTML <code>button</code>  tag defines a clickable button.</p>

<p>The CSS <code>background-color</code>  property defines the background color of an element.</p> 

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

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

‎تگ‎<code>‎ براي معرفي قطعه اي كد كامپيوتري استفاده ميشود .محتوي داخل ‎تگ توسط مرورگر باmonospace font نمايش داده ميشود .

‎تگ‎ نكته -‎<code>‎ منسوخ نشده است ، اما با امكانات CSS وتگ هاي جدول زير ‎ميتوان به نتايج بهتري در اين ارتباط دست يافت.

‎‎تگ ‎‎شـــرح
‎<samp>‎‎ ‎‎خروجي برنامه كامپيوتري را معرفي ميكند.
‎<kbd>‎‎ ‎‎ورودي كي برد را معرفي ميكند.
‎<var>‎‎ ‎‎متغيري را تعريف ميكند.
‎<pre>‎‎ ‎‎متن از پيش فرمت شده را معرفي ميكند.

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

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

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

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

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

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

‎‎مثالهاي بيشتر

‎‎مثال ـ استفاده ازCSS براي استايل كرد عنصر ‎<code>

 <html>
<head>
<style>code {
  font-family: Consolas,"courier new";
  color: crimson;
  background-color: #f1f1f1;
  padding: 2px;
  font-size: 105%;
}
</style></head>
<body>

<p>The HTML <code>button</code>  tag defines a clickable button.</p>
<p>The CSS <code>background-color</code>  property defines the background color of an element.</p>

</body>
</html> 

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

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

‎‎بيشتر مرورگرها محتوي عنصر‎<code>‎ مطابق تنظيمات زير نمايش ميدهند .

code {
  font-family: monospace;
}

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

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


Previous >    <Next