HTMLcite 屬性
<blockquote> 元素的 cite 屬性用於設定引用來源。
以下是語法 −
<blockquote cite="url">
在上面,網址是引用的來源。現在讓我們看一個示例來實現 <blockquote> 元素的 cite 屬性 −
示例
<!DOCTYPE html> <html> <body> <h2>Magento</h2> <p>Magento as stated on the official website:</p> <blockquote cite="https://magento.com/products"> Magento Commerce, part of Adobe Commerce Cloud, offers a one-of-a-kind eCommerce solution with enterprise power, unlimited scalability, and open-source flexibility for B2C and B2B experiences. Magento allows you to create unique, full-lifecycle customer experiences proven to generate more sales. </blockquote> </body> </html>
輸出
在上面的示例中,我們使用 <blockquote> 文字設定了一個引用 −
<blockquote cite="https://magento.com/products"> Magento Commerce, part of Adobe Commerce Cloud, offers a one-of-a-kind eCommerce solution with enterprise power, unlimited scalability, and open-source flexibility for B2C and B2B experiences. Magento allows you to create unique, full-lifecycle customer experiences proven to generate more sales. </blockquote>
使用 cite 屬性設定引用的來源 −
cite="https://magento.com/products"
廣告