css style標籤所見即所得 (WYSIWYG)

來源:互聯網
上載者:User

style 也是標籤(在非ie核心的瀏覽器中支援),直接

 

我們將style設定成 contenteditable的時候,那麼那的內容就可以編輯了。仔細的體驗下,如果我們將背景修改成紅色的。

那麼只要書寫完,立馬呈現。哇靠,這很方便我們以後寫那種動態編輯器效果呢,等有時間的話,我再試試。附上我研究的代碼:

 1 <!DOCTYPE HTML>
 2 <html >
 3 <head>
 4     <meta http-equiv="Content-Type" content="text/html;charset=gb2312" />
 5     <title></title>
 6     <style type="text/css">
 7     body style {
 8         display: block;
 9         background: #333;
10         color: white;
11         font: 13px/1.8 Monaco, Mono-Space;
12         padding: 20px;
13         white-space: pre;
14         margin:0 auto;
15         width:500px;
16         height:100px;
17 }
18     </style>
19 </head>
20 <body>
21     <style contenteditable>body {background: green;}</style>
22 </body>

23 </html> 

參考文章:http://css-tricks.com/show-and-edit-style-element/ 

相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.