即使在缩放时,如何才能在移动浏览器上获得流畅的换行符?
我有一个非常简单的网页,只有一列文字.以下是CSS的相关部分:
/* ?---------------- */
body {
/* To avoid problems with some older browsers, that do not calculate
* relative values correctly without this statement. */
font-size: 100%;
/* ?---------------- */
/* Center the content and leave a margin at the left and at the right. */
margin-left: auto;
margin-right: auto;
/* ?---------------- */
}
/* ?---------------- */
@media not print {
body {
/* ?---------------- */
/* Do not put too many words in a single line: */ …Run Code Online (Sandbox Code Playgroud)