发布网友 发布时间:2022-04-24 06:20
共3个回答
热心网友 时间:2022-04-21 08:33
<style>
div{min-width:350px;width:350px;min-height:350px;height:350px;margin:0px auto;}
</style>
而且要放在<head>标签里面
或者在<head>标签里面加上CSS的连接
样式也CSS里面
<link href="样式路径(.css格式的文件地址路径)" rel="stylesheet" type="text/css" media="screen" />
热心网友 时间:2022-04-21 09:51
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
<style>
div{
min-width:350px;
width:350px;
min-height:350px;
height:350px;
margin:0px auto;
}
</style>
</head>
<body>
<div></div>
</body>
</html>
热心网友 时间:2022-04-21 11:26
<style>
div{min-width:350px;width:350px;min-height:350px;height:350px;margin:0px auto;}
</style>