Jump to content
  • 0

отвязывается css


voin545
 Share

Question

делаю сайт

вот код html


<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1251">
<title>бла-бла</title>
<link rel="stylesheet" type="text/css" href="index.css">
</head>
<body>
<div class="vse"></div>
</body>
</html>

вот код css


html,body
.vse
{
background-color : ffccff ;
}

столкнулся с такой проблемой

при добавлении абсолютно любого догтайпа при открытии страницы в браузуре не отбражается результат действия css

Link to comment
Share on other sites

7 answers to this question

Recommended Posts

  • 0

внес незначительные именения

html

<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1251">
<title>бла-бла</title>
<link rel="stylesheet" type="text/css" href="index.css">
</head>
<body>
<div class="vse">
<div class="shapka"></div>
</div>
</body>
</html>

css

html,body
.vse
{
background-color : #cccccc ;
}
.shapka
{
background-color : #ccffcc ;
float : left ;
height : 20% ;
width : 20% ;
}

не отображается класс chapka

почему ?

Link to comment
Share on other sites

  • 0

все нормально отображается

overflow:hidden; надо было задать для .vse


<!DOCTYPE HTML>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<title></title>
<style type="text/css">
.vse{
background-color : #cccccc ;
overflow:hidden;
}
.shapka{
background-color : #ccffcc ;
float : left ;
height : 200px ;
width : 200px ;
}
</style>
</head>
<body>
<div class="vse">
<div class="shapka"></div>
</div>
</body>
</html>

Link to comment
Share on other sites

  • 0
не отображается класс chapka

почему ?


.shapka
{
html,body
.vse
{
background-color : #cccccc ;
}
.shapka
{
background-color : #ccffcc ;
float : left ;
height : 20% ;
width : 20% ;
}

Классу .shapka не откуда отсчитывать эти 20% высоты. Задайте высоту для класса .vse в px или в %. Если для .vse зададите в % то прийдется и для body явно задавать высоту.

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.
Note: Your post will require moderator approval before it will be visible.

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.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy