带有空格的html textarea中的缩进无法正常工作

时间:2019-07-11 14:06:29

标签: html text textarea

当我尝试在html textarea中添加额外的空格以使我的文字缩进并以我需要的正确方式包装时,textarea会修剪这些空格并以自己的方式包装文字。

让我们假设点(。)是空格。在这种情况下,事情就以某种方式进行,我想要它们。第<plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId> <version>3.0.0</version> <executions> <execution> <id>add-integration-test-sources</id> <phase>generate-test-sources</phase> <goals> <goal>add-test-source</goal> </goals> <configuration> <sources> <source>src/it/java</source> </sources> </configuration> </execution> <execution> <id>add-integration-test-resources</id> <phase>generate-test-resources</phase> <goals> <goal>add-test-resource</goal> </goals> <configuration> <resources> <resource> <filtering>true</filtering> <directory>src/it/resources</directory> </resource> </resources> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-failsafe-plugin</artifactId> <version>3.0.0-M3</version> <executions> <execution> <id>integration-test</id> <goals> <goal>integration-test</goal> <goal>verify</goal> </goals> </execution> </executions> </plugin> 行将在大小为(cols:13)的文本区域中以等宽字体显示为:

enter image description here

在此处,文本区域中的字符串最大为13个字符。并且该字符串缩进了一个制表符,该制表符开头以4个字符表示。因此,这些行的末尾还有其他点,以使字符串的下一部分在文本区域的下一行。而且有效。

但是,如果我使用空格而不是这些点,那么初始行是:

'....some.........texts........here'

与以前相同的文字是

enter image description here

因此textarea在包裹字符串的所有位置都修剪了额外的空格。有什么办法可以避免吗?

UPD:看来该主题已突出显示here

0 个答案:

没有答案