2013-03-14 81 views
0

我一直在尋找"example" heading in twitter bootstrap但這不是我想要的。 我想要做的是動態更改內容。「example」在twitter引導標題

關於此示例http://jsfiddle.net/YdusM/10/我嘗試將<div class="well example" style="">更改爲<div class="well example" style="content:"dsd"">但未獲成功。

這是可能的?我做錯了什麼?

感謝

+0

查看快速的非黑客的解決方法,我來到了這裏http://stackoverflow.com/a/15852394/2151817 – 2013-04-06 16:03:26

回答

0

這可不行,因爲它是持有「示例」文本的:before

你可以像下面這樣做(JSFiddle

HTML

<div class="well example tree">Tree</div> 

CSS

.tree:before { content: "Tree"; } 
+0

謝謝!解決了我的問題。 – Oruam 2013-03-15 10:40:19