所以我正在Dreamweaver中完成我的第一个网站。我只想知道如何在不滚动的情况下使我的徽标适合屏幕。因为它在我的屏幕上看起来不错,但是在更大的场景中,图像变得太大而我们必须滚动。感谢你提前给你所有的东西。
图片大小:宽度:7,24 高:7,17
HTML
<!doctype html>
<html>
<head>
<link href="css1.css" rel="stylesheet" type="text/css">
<meta charset="utf-8">
<title>Matic Toni</title>
</head>
<body>
<div class="logo">
<a href="projects.html">
<img src="lg.png" width="40%" alt="" />
</a>
</div>
<footer>copyright 2016 maticoni</footer>
</body>
</html>
CSS
@charset "utf-8";
div {
text-align: center;
padding-bottom: 30px;
}
body {
/* background-image: url(background.jpg);
background-sizce: cover; */
background-color: #F6F6F6;
}
.logo {
padding-top:3%;
}
footer {
font-family:"Proxima";
clear: both;
color: black;
font-size: 100%;
margin-top: 5%;
margin-right: 5%;
margin-left: 5%;
text-align: center;
}
li a img {
padding-top: 3%;
}
@font-face {
font-family: Proxima;
src: url(Fonts/Proxima_Regular.otf);
}
答案 0 :(得分:0)
为img.logo设置最大宽度。这也可以防止它在更大的屏幕尺寸下进行像素化。