Jump to content
Fórum Script Brasil
  • 0

Background-image não funciona no <div id>


pamellass

Question

Olá gente! Gostaria muitissimo da ajuda de vocês por favor...

Tenho esse XHTML:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">

<head>

<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

<title>CEDM - Centro de Estudos da Dor e do Movimento</title>

<style type="text/css">

ul.nav {

list-style-type:none;

padding-left:0;

margin-left:0;

}

#top {

background-image:url(images/header.jpg);

background-repeat: no-repeat;

}

</style>

</head>

<body>

<div id="top">

</div>

<ul class="nav">

<li><a href="index.html">Home</a></li>

<li><a href="sobre.html">Sobre o CEDM</a></li>

<li><a href="dor.html">Prevenção da dor</a></li>

<li><a href="clinica.html">Clínica</a></li>

<li><a href="cursos.html">Cursos</a></li>

<li><a href="sports.html">Sports</a></li>

<li><a href="estudos.html">Centro de Estudos</a></li>

<li><a href="contato.html">Contato</a></li>

</ul>

</body>

</html>

Gostaria de saber o que é que eu estou fazendo de errado, pois o <div id="top"> parece que nem existe! A imagem que estou querendo colocar como background nele, não aparece , nem background-colour, nem nada....já tentei com aspas duplas, aspas n duplas, ../ , / e nada funciona. E o caminho da imagem sei q está certo pois quando testei a tag <img src...... funcionou!

O que pode ser? Heeeeelp please! :)

Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0

A imagem não aparece porque é um background.. As divs ocupam espaço de acordo com o conteúdo. Como o background não é um conteúdo e a div está vazia, é como se a div estivesse com width e height igual a 0. Para o background aparecer, precisa colocar um valor para width e height.

Link to comment
Share on other sites

  • 0

No caso aconselho voce a definir um tamanho, exemplo:

#top {

background-image:url(images/header.jpg);

background-repeat: no-repeat;

whidth: 600px;

height: 300px;

}

Se continuar não aparecendo dentro da div coloque o conteudo abaixo

Alt + 255

que adiciona um espaço em branco como se fosse um espaço

 

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Forum Statistics

    • Total Topics
      152.2k
    • Total Posts
      652k
×
×
  • Create New...