‎‎تگ نقل قولHTML <blockquote> Tag -‎

Previous >    <Next  

‎‎مثال ـ نقل قول از منبع ديگر

<blockquote cite="http://www.worldwildlife.org/who/index.html">
For 50 years, WWF has been protecting the future of nature. The world's leading conservation organization, WWF works in 100 countries and is supported by 1.2 million members in the United States and close to 5 million globally.
</blockquote> 

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

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

‎تگ‎<blockquote>‎ بخشي را كه از منبع ديگري است بعنوان نقل قول تعريف ‎ميكند.

‎مرورگر ها معمولا محتوي عنصر‎<blockquote>‎ با كمي فرورفتگي نمايش ‎ميدهند .به نتيجه اجراي مثال توجه كنيد.

‎‎براي نقل قول برخط وكوتاه از‎ نكته -‎<q>‎ استفاده كنيد .

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

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

‎‎ويژگي هاAttributes -‎

‎‎ويژگي ‎‎مقدار ‎‎شــرح
cite‎‎ URL‎‎ ‎‎آدرسURL منبع نقل قول را مشخص ميكند .

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

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

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

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

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

‎‎مثال ـ استفاده ازCSS براي حذف تورفتگي

 <html>
<head>
<style>blockquote {
  margin-left: 0;
}
</style></head>
<body>

<p>Here is a quote from WWF's website:</p>

<blockquote cite="http://www.worldwildlife.org/who/index.html">
For 50 years, WWF has been protecting the future of nature. The world's leading conservation organization, WWF works in 100 countries and is supported by 1.2 million members in the United States and close to 5 million globally.
</blockquote>

</body>
</html> 

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

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

‎بيشتر مرورگرها محتوي‎<blockquote>‎ را با مقادير پيش فرض زير نمايش ‎ميدهند.

blockquote {
  display: block;
  margin-top: 1em;
  margin-bottom: 1em;
  margin-left: 40px;
  margin-right: 40px;
}

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

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


Previous >    <Next