gpt4 book ai didi

html - 响应式设计 - 不同字体大小的星系

转载 作者:行者123 更新时间:2023-11-28 06:58:17 27 4
gpt4 key购买 nike

我有一个问题。我有一个 div,在这个 div 中还有一个带有文本“Benjamin”的 div。字体大小为 7vh。当我检查 galaxy s4 mini 上的网站时,文本的位置和大小都正确。当我用 galaxy a5 检查网站时,文本位置错误。我用 iPhone 4 和 5 检查网站。它总是正确的。只有 galaxy a5 告诉我错误。我们使用相同版本的 Chrome。

http://www.benwillgruber.com/stefanseite/test/index.php --> 站点 http://www.benwillgruber.com/stefanseite/test/wrong_galaxy_a5.jpg-- > 错误的位置 http://www.benwillgruber.com/stefanseite/test/google_nexus_10_emulator.png --> 对了一个 http://www.benwillgruber.com/stefanseite/test/galaxy_s4_mini.png --> 正确的。

CSS:

 * { box-sizing: border-box;}

body {
background-color: #3C3C3B; /* Dunkel Grau */
padding: 0px;
margin: 0px;
overflow: hidden;
width: 100vw;

}

/* Willkommenseite */
#startseite {
width: 100vm;
height: 100vh;
overflow: hidden;
}

#spalte1reihe1 {
width: 25vw;
height: 22vh;
float: left;
background-color: #ECECEC; /* Grau */
}

#spalte2reihe1 {
width: 50vw;
height: 22vh;
float: left;
background-color: #ffffff;
}

#spalte3reihe1 {
width: 25vw;
float: left;
height: 22vh;
background-color: #ECECEC; /* Grau */
}

/* Willkommenseite Benjamin Willgruber */

#spalte1reihe2 {
width: 25vw;
height: 16vh;
float: left;
background-color: #2DAB66; /* Grün */
}

#spalte2reihe2 {
width: 50vw;
height: 16vh;
float: left;
background-color: #3C3C3B;
}

#spalte3reihe2 {
width: 25vw;
float: left;
height: 16vh;
background-color: #2DAB66; /* Grün */
}

/* Willkommenseite kombiniert mit */

#spalte1reihe3 {
width: 25vw;
height: 17vh;
float: left;
background-color: #ECECEC; /* Grau */
}

#spalte2reihe3 {
width: 50vw;
height: 17vh;
float: left;
background-color: #ffffff;
}

#spalte3reihe3 {
width: 25vw;
float: left;
height: 17vh;
background-color: #ECECEC; /* Grau */
}

/* Willkommenseite Gumhalter Stefan */

#spalte1reihe4 {
width: 25vw;
height: 16vh;
float: left;
background-color: #1E788B; /* Blau */
}

#spalte2reihe4 {
width: 50vw;
height: 16vh;
float: left;
background-color: #3C3C3B;
}

#spalte3reihe4 {
width: 25vw;
float: left;
height: 16vh;
background-color: #1E788B; /* Blau */
}

#spalte1reihe5 {
width: 25vw;
height: 29vh;
float: left;
background-color: #ECECEC; /* Grau */
}

#spalte2reihe5 {
width: 50vw;
height: 29vh;
float: left;
background-color: #ffffff;
}

#spalte3reihe5 {
width: 25vw;
float: left;
height: 29vh;
background-color: #ECECEC; /* Grau */
}

#benjaminwillgruber {
float: left;
width: 50%;
height: 16vh;
padding-left: 10px;
overflow: hidden;
border: 1px solid #ff0000;
}

#grafikmediendesign {
float: left;
width: 50%;
height: 16vh;
text-align: right;
padding-right: 10px;
overflow: hidden;
border: 1px solid #ff0000;

}

#benjamin {
font-size: 7vh;
color: #ffffff;

}

#willgruber {
font-size: 7vh;
color: #ffffff;

}

#grafik {
font-size: 7vh;
color: #ffffff;
}

#mediendesign {
font-size: 7vh;
color: #ffffff;

}

/* Auflösung 300 bis 500 */
/* Seitliche Balken werden ausgeblendet */


@media only screen and (min-width: 0px) and (max-width: 1000px)
{

#spalte1reihe1 {
display: none;
}
#spalte2reihe1 {
width: 100vw;
}
#spalte3reihe1 {
display: none;
}
#spalte1reihe2 {
display: none;
}
#spalte2reihe2 {
width: 100vw;
}
#spalte3reihe2 {
display: none;
}
#spalte1reihe3 {
display: none;
}
#spalte2reihe3 {
width: 100vw;
}
#spalte3reihe3 {
display: none;
}
#spalte1reihe4 {
display: none;
}
#spalte2reihe4 {
width: 100vw;
}
#spalte3reihe4 {
display: none;
}
#spalte1reihe5 {
display: none;
}
#spalte2reihe5 {
width: 100vw;
}
#spalte3reihe5 {
display: none;
}
}

HTML:

<!DOCTYPE html>
<html lang = "de">
<head>
<title>Test</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta charset = "utf-8">
<link rel = "stylesheet" href = "./css/style.css">

<style type = "text/css">
@font-face {
font-family: 'avril';
src: url('./font/arvil_sans-webfont.eot');
src: url('./font/arvil_sans-webfont.eot?#iefix') format('embedded-opentype'),
url('./font/arvil_sans-webfont.woff2') format('woff2'),
url('./font/arvil_sans-webfont.woff') format('woff'),
url('./font/arvil_sans-webfont.ttf') format('truetype'),
url('./font/arvil_sans-webfont.svg#arvil_sans-webfont') format('svg');
font-weight: normal;
font-style: normal;

}

@font-face {
font-family: 'sensation';
src: url('./font/sansation_regular-webfont.eot');
src: url('./font/sansation_regular-webfont.eot?#iefix') format('embedded-opentype'),
url('./font/sansation_regular-webfont.woff2') format('woff2'),
url('./font/sansation_regular-webfont.woff') format('woff'),
url('./font/sansation_regular-webfont.ttf') format('truetype'),
url('./font/sansation_regular-webfont.svg#sansation_regular-webfont') format('svg');
font-weight: normal;
font-style: normal;

}
</style>

</head>
<body>
<div id = 'startseite'>
<div id = "reihe1">
<div id = "spalte1reihe1">
</div>
<div id = "spalte2reihe1">
</div>
<div id = "spalte3reihe1">
</div>
</div>
<div id = "reihe2">
<div id = "spalte1reihe2">
</div>
<div id = "spalte2reihe2">
<div id = 'benjaminwillgruber'>
<div id = 'benjamin'>
<font style = "font-family: 'avril'">Benjamin</font>
</div>
<div id = 'willgruber'>
<font style = "font-family: 'avril'">Willgruber</font>
</div>
</div>
<div id = 'grafikmediendesign'>
<div id = 'grafik'>
<font style = "font-family: 'avril'">Grafik</font>
</div>
<div id = 'mediendesign'>
<font style = "font-family: 'avril'">Mediendesign</font>
</div>
</div>
</div>
<div id = "spalte3reihe2">
</div>
<div id = "reihe3">
<div id = "spalte1reihe3">
</div>
<div id = "spalte2reihe3">
</div>
<div id = "spalte3reihe3">
</div>
</div>
<div id = "reihe4">
<div id = "spalte1reihe4">
</div>
<div id = "spalte2reihe4">
</div>
<div id = "spalte3reihe4">
</div>
</div>
<div id = "reihe5">
<div id = "spalte1reihe5">
</div>
<div id = "spalte2reihe5">
</div>
<div id = "spalte3reihe5">
</div>
</div>
</div>
</div>
</body>
</html>

最佳答案

因为我不能评论...文本在标准页面上没有正确对齐(我假设这只适用于移动设备?)

我假设屏幕尺寸与 A5 和 s4 不同。您可能必须使用媒体查询来确保文本根据可用的屏幕尺寸正确显示。您发布的 CSS 是您的全部 CSS 代码吗?

(再次...我想将此作为评论发布,但我没有代表。我愿意提供帮助,只是需要更多信息。

关于html - 响应式设计 - 不同字体大小的星系,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33376318/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com