1 2 3 4 5 6 | selector:after{ }selector:before{ } |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | <!DOCTYPE html><html> <head> <meta charset="utf-8"> <style> .title:after{ content : " freetuts.net" } </style> </head> <body> <div class="title">Chào mừng bạn đến với</div> </body></html> |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | <!DOCTYPE html><html> <head> <meta charset="utf-8"> <style> .title:before{ content : "freetuts.net " } </style> </head> <body> <div class="title">Chào mừng bạn</div> </body></html> |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | <!DOCTYPE html><html> <head> <meta charset="utf-8"> <style> .title:before{ content : "After và Before "; cursor: text; border: solid 1px; padding: 5px; background: red } </style> </head> <body> <div class="title">có thể sử dụng CSS</div> </body></html> |
display:inline-block.