我怎样才能使图像出现在网页的中心图像应该是浮动的,以便它垂直和水平地位于中心.. 有很多片段,但没有一个是完整的,所以它不是 f对我有什么用:(我在网页中只有一个 jpg 没有别的
这是我尝试过的,这使它水平居中但不垂直居中
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta http-equiv="Content-Style-Type" content="text/css">
<title> Welcome </title>
<style type="text/css">
.centeredImage
{
vertical-align: middle;
text-align:center;
margin-top:0px;
margin-bottom:0px;
padding:0px;
}
</style>
</head>
<body>
<p class="centeredImage">
<img src="mypic.jpg" alt="welcome " width ="1024" height = " 565" >
</p>
-T