Safari 10.1 zeigt die Seite teilweise nicht richtig an, wenn das Bild und der Titel, die in der Mitte angezeigt werden sollen, auf Fair Fox und Chrome richtig auf der Seite des Bildschirms angezeigt werden.
Ich finde eine ähnliche Frage zu Apple Communities:
https://discussions.apple.com/message/31621999#31621999
Die vorgeschlagene Lösung besteht darin, Standardschriftarten wiederherzustellen:
Try Applications
>Font Book
>File
>Restore Standard Fonts
Aber ich konnte nicht finden, wo in Applications
der Font Book File
befindet.
Wie finde ich es oder verwende es in einer anderen Lösung, um Formatierungsprobleme in Safari 10.1 zu beheben?
// BEARBEITET
<style type="text/css">
.pics-wrapper {
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
-webkit-justify-content: center;
-ms-justify-content: center;
justify-content: center;
-webkit-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row;
}
.pics-wrapper: width: 851px;
table {
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
-webkit-justify-content: center;
-ms-justify-content: center;
justify-content: center;
}
.left-pics p,
.right-pics p
.bottom-pic p
{
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
-webkit-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row;
}
.left-pics img,
.right-pics img
.bottom-pic img
{
padding:2px;
}
@media (max-width:960px) {
.left-pics p,
.right-pics p
.bottom-pic p
{
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
}
}