Blogger - Troubleshoot Issues of Blogger
1. Fail to create tables with horizontal scrollbars.
Simply, customize the HTML of Blogger theme and change the following content
body{ overflow-wrap:break-word; word-break:break-all; word-wrap:break-word } |
to
body{ overflow-wrap:break-word; word-break:keep-all; word-wrap:break-word } |
2. Fail to insert tab keys.
Instead of using
	 |
, use
	 |
References:
https://dev.w3.org/html5/html-author/charref
Comments
Post a Comment