我刚开始学习CSS并在本地门户网站上创建了一个示例页面。我想知道这些编码风格是否正确。
我开始知道这些编码风格在很大程度上都不起作用。
你能否更正我的代码使其变得更加可行,我会尝试学习一些编码风格,并将其调整为我的便利。
很抱歉,如果在本网站上无法提出这类问题。
<div class="initial">
<div style="position:relative; width:100%; margin-Top: 4.75%; font-size: 1.3em; font-family: Helvetica; text-align: center; background-color: #bbb;">
<center><p style='line-height:200%'>
<a href=h.php style="text-decoration: none; color:white"> Home</a>
<a href=click.php style="text-decoration: none; color:white">Please Click Here</a>
<a href=contact.php style="text-decoration: none; color:white">Contact</a>
<a href=about.php style="text-decoration: none; color:white">About Me</a></p></center>
</style>
</div>
</div>
谢谢,
答案 0 :(得分:2)
首先要注意的是..
,而是使用margin
或padding
请参阅片段我如何实施padding
.initial-content {
position: relative;
width: 100%;
margin-Top: 4.75%;
font-size: 1.3em;
font-family: Helvetica;
text-align: center;
background-color: #bbb;
}
p {
line-height: 200%;
}
a {
text-decoration: none;
color: white;
padding: 5px 25px;
}
<div class="initial">
<div class="initial-content">
<center>
<p>
<a href=h.php> Home</a>
<a href=click.php>Please Click Here</a>
<a href=contact.php>Contact</a>
<a href=about.php>About Me</a>
</p>
</center>
</div>
</div>
答案 1 :(得分:1)
注意事项:
答案 2 :(得分:0)
好吧,如果它不能在很大程度上起作用,你回答了半个问题:这意味着它不正确。究竟是什么不正确:
</style>
关闭并不关闭任何内容。您可以在这些标记中使用css代码,但更适合使用.css文件。
事:使用定位css。例如,如果您希望项目垂直对齐,则可以使用item{clear:left;float:left;}
<center>
标记已弃用。 Why?请改为使用<div class="centered(or whatever you feel like calling it)">
并为其设置样式:.centered{width: 60%;margin:auto;}
但其余的都是正确的。