40 lines
822 B
Java
40 lines
822 B
Java
<!DOCTYPE html>
|
||
|
||
<html lang="en">
|
||
<head>
|
||
<meta charset="utf-8" />
|
||
<style type="text/css">
|
||
body{
|
||
margin: 0 auto;
|
||
width:900px;
|
||
background-color: #CCB;
|
||
}
|
||
.container{
|
||
width: 700px;
|
||
height: 700px;
|
||
margin: 0 auto;
|
||
}
|
||
img{
|
||
width:auto;
|
||
height:auto;
|
||
max-width:100%;
|
||
max-height:100%;
|
||
padding-bottom: 36px;
|
||
}
|
||
span{
|
||
display: block;
|
||
font-size:20px;
|
||
color:blue;
|
||
}
|
||
</style>
|
||
</head>
|
||
<body>
|
||
<div class="container">
|
||
<span>
|
||
该文件类型(${file.suffix?html})系统暂时不支持在线预览,<b>说明</b>:
|
||
<p style="color: red;">${msg}</p>
|
||
</span>
|
||
</div>
|
||
</body>
|
||
|
||
</html> |