【发布时间】:2018-04-07 02:35:27
【问题描述】:
如何在 Odoo 网站上制作带有大图的登录页面。
这不起作用。通过使用样式或正文,认为 HTML 中的链接“正常”CSS 工作正常。
错误:此页面包含以下错误:第 26 行第 8 列的错误:开始和结束标记不匹配:元行 0 和头部 下面是页面呈现到第一个错误。
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
body, html {
height: 100%;
margin: 0;
}
.bg {
/* The image used */
background-image: url("...");
/* Full height */
height: 100%;
/* Center and scale the image nicely */
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
</style>
</head>
<body>
<div class="bg"></div>
</body>
</html>
【问题讨论】: