以80%宽度居中的固定位置标头Div

时间:2018-07-02 17:13:41

标签: css

我试图创建一个div作为标题栏,但失败了。 我希望div固定,居中且宽度为80%。

代码:

#header {
position: fixed;
display: inline-block;
/*left: 0px*/
top: 0px;
margin: auto;
width: 80%;
height : 175px;
border: 1px solid black;
}

HTML代码:

<html>
<head>
    <title> Yakir Freed </title>
    <link rel="stylesheet" href="css/style.css">

    <div id="header">
        <img id="logo" src="images/logo.png" alt="Yakir Freed" />
    </div>
</head>
<body></body>
</html>  

1 个答案:

答案 0 :(得分:0)

尝试一下:

>>> from random import randint
>>>
>>> def jump():
...     return randint(1, 6)
...
>>> jump()
5
>>>
#header {
position: fixed;
display: inline-block;
left: 0px;
top: 0px;
margin: 0 10%;
width: 80%;
height : 175px;
border: 1px solid black;

}