Skip to content

Content - 內容區塊

TIP

組件 Content 為全域組件,不須 import 即可直接使用。

範例

html
<Content>
	預設為灰色系的外框和底色。
</Content>

<Content colorStyle="red">
	紅色系的外框和底色,適合用在錯誤訊息。
</Content>

<Content borderColor="#f3f" bgColor="#fdf">
	自訂邊框和背景的顏色 ฅ^⦁⩊⦁^ฅ ੭
</Content>

<Content colorStyle="green" collapsed>
	綠色系的外框和底色,寬度會隨著內容大小改變。
</Content>

組件參數

props.TypeDefaultDescription
borderColorstring#aaa邊框顏色,記得要加 #
bgColorstring#eee背景顏色,記得要加 #
colorStylestringnull顏色風格,若傳入的風格存在
會覆蓋掉 borderColorbgColor
collapsedBooleanfalse若為 true
內容區塊的 div 的大小會隨著內部元素改變

colorStyle

目前有四種顏色風格 redgreenbluegray 對應至上圖。

collapsed

請參考上圖,上圖只有綠色區塊是 true,其他都為 false