所以我刚刚开始我的网页设计师职业生涯,现在正在做我的第一个项目,我刚刚完成了第一个页面设计,但无论如何我对我创建的 css 设计有些担心,主要是关于定位 html 元素。这是代码示例:
.contentbackground
{
background-image: url('../images/body/BG.png');
width: 1218px;
height: 370px;
position: absolute;
top: 205px;
margin-left: 67px;
}
.loginbox
{
width: 351px;
height: 280px;
position: absolute;
top: 40px;
right: -12px;
}
.lblLogin
{
position: absolute;
top: 85px;
right: 265px;
font-family: "Century Gothic";
font-size: 16px;
color: #FFFFFF;
}
问题是,这种方法是最佳实践吗?我的意思是,设置绝对位置,并手动配置顶部,左侧,右侧,底部放置,是否推荐?