插入项目文件夹中已存在的图像

时间:2015-05-28 09:50:45

标签: css eclipse

我在我项目的一个文件夹中有这个图像: enter image description here

我想用该图片制作一个图标,所以我试着像这样调用它: enter image description here

但它一直在发生错误:

enter image description here

我想我有这个错误,因为我没有给出任何路径。

你能帮我吗?

由于

2 个答案:

答案 0 :(得分:1)

css

中使用此路径
background: #ff9900 url("../img/Arrow_Circle_Right-32.png") no-repeat 10px center;

请注意基本路径的前缀:../img/

您可以从css目录返回,然后输入包含图片的img目录。

答案 1 :(得分:1)

css文件在与其相同的文件夹中搜索以查找背景图像。

尝试:

typedef struct {
    thread_start_routine start;
    void *arg;
} entry_point;

static void thread_runner(void *args) {
    exit_critical_section();

    entry_point *entry = (entry_point *) args;

    // run the thread and get the exit code
    current->retcode = entry->start(entry->arg);
}

“..”返回一个文件夹,然后img访问图像文件夹。