テキストの折り返しを止めようとしています。どうすればnowrap
以下にを追加して、すべてを機能させ続けることができますか?
html.Append("<ins style=\"background:#e6ffe6;\">").Append(text)
.Append("</ins>");
次のようなものを追加する必要があります:
// style='white-space:nowrap; display:inline;'
追加すると、スタイリングが台無しになります。私はそれを間違って追加していると思いますか?
html.Append("<ins style='white-space:nowrap; display:inline;',style=\"background:#e6ffe6;\">").Append(text)
.Append("</ins>");