W3Schools 在线编辑工具(TIY) V3.0
编辑的代码:
运行代码 »
©
w3s.com.cn
运行结果窗口大小:
300 x 150
<
html
>
<
head
>
<
style
type
="text/css"
>
ul
{
list-style
:
square inside url('/i/eg_arrow.gif')
}
<
/style
>
<
/head
>
<
body
>
<
ul
>
<
li
>
咖啡
<
/li
>
<
li
>
茶
<
/li
>
<
li
>
可口可乐
<
/li
>
<
/ul
>
<
/body
>
<
/html
>
<html> <head> <style type="text/css"> ul { list-style: square inside url('/i/eg_arrow.gif') } </style> </head> <body> <ul> <li>咖啡</li> <li>茶</li> <li>可口可乐</li> </ul> </body> </html>