Jump to content
  • 0

Не центруется надпись, что я делаю не так?


delahtml
 Share

Question

 

<!Doctype html>

<html>
<head>
<link style="text/css" rel="stylesheet" src="game.css" />
<title>Заголовок</title>
</head>
<body>
<div class="center">
<h3>Хочу быть в центре</h3>
</div>
</body>
</html>

 

 

body {

background-image: url('');
}
.center h3 {
position: relative;
top: 500px;
left: 300px;
}

 

Хочу с помощью css поменять позицию надписи на странице. Сделал вот так. Нифига не меняется. Что я делаю не так?

Link to comment
Share on other sites

4 answers to this question

Recommended Posts

  • 0

Несколько вариантов:

.center h3 {text-align: center;}
.center h3 {  text-align: center;  height: 320px;  line-height: 320px;}
.center h3 {margin-top: 50%;margin-left: 25%}

Position лучше не использовать без нужды.
game.css весьма странное название для файла таблицы стилей, хотя, что я придрался к названию, суть-то не в этом.

Edited by xpanda
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