Warning: file_get_contents(/data/phpspider/zhask/data//catemap/7/css/34.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Html 如何将列表项目符号图像与li文本对齐_Html_Css_List - Fatal编程技术网

Html 如何将列表项目符号图像与li文本对齐

Html 如何将列表项目符号图像与li文本对齐,html,css,list,Html,Css,List,我使用图像作为列表的项目符号 我正在尝试将列表项文本与列表项目符号图像对齐,以便文本如下所示: 如何更改列表样式?使用背景插入图像: ul{ list-style-type:none; } ul li{ background: url("http://www.w3schools.com/cssref/smiley.gif") 0 50% no-repeat; padding-left: 40px; line-height: 40px; }

我使用图像作为列表的项目符号

我正在尝试将列表项文本与列表项目符号图像对齐,以便文本如下所示:


如何更改列表样式?

使用背景插入图像:

ul{ 
    list-style-type:none;
}
ul li{
    background: url("http://www.w3schools.com/cssref/smiley.gif") 0 50% no-repeat;
    padding-left: 40px;
    line-height: 40px;
}