1 | <!DOCTYPE html> |
---|
2 | <html> |
---|
3 | <head> |
---|
4 | <title>Replace Textarea by Code — CKEditor Sample</title> |
---|
5 | <meta charset="utf-8"> |
---|
6 | <style> |
---|
7 | a.myclass:after { |
---|
8 | content: url('http://www.w3schools.com/cssref/paper.gif'); |
---|
9 | } |
---|
10 | |
---|
11 | div.mydivclass:after { |
---|
12 | content: url('http://www.w3schools.com/cssref/paper.gif'); |
---|
13 | } |
---|
14 | </style> |
---|
15 | </head> |
---|
16 | <body> |
---|
17 | <div style="margin:20px; border:1px solid black; width:500px;"> |
---|
18 | <h2>Insert image with CSS into non-editable div</h2> |
---|
19 | <div class="mydivclass"></div> |
---|
20 | <p> |
---|
21 | <a href="http://test.com" class="myclass"></a> |
---|
22 | </p> |
---|
23 | </div> |
---|
24 | |
---|
25 | <div style="margin:20px; border:1px solid black; width:500px;" contenteditable="true"> |
---|
26 | <h2>Insert image with CSS into editable div</h2> |
---|
27 | <div class="mydivclass"></div> |
---|
28 | <p> |
---|
29 | <a href="http://test.com" class="myclass"></a> |
---|
30 | </p> |
---|
31 | </div> |
---|
32 | </body> |
---|
33 | </html> |
---|