I am using 3rd party application which allows custom CSS to adjust a certain setting. Here is the data extracted from Chrome
<textarea readonly="readonly"
disabled="disabled"
class="cComment TextEntry"
id="C050590L"
name="@C050590L"
type="Text" maxlength="4000"
rows="12"
style="width:100%">2020-01-30: On x710 Controller types, 1GbE is not supported with DAC Cable. You can ONLY get 1GbE support with Optical cable/ 1G Transceiver.* 2020-02-13: On X710 Controller types, the link capabilities and autoneg are inconsistent on different firmware releases.
The changes that were made between various FW versions are confidential and cannot be shared externally but the output you see is on your particular FW is what should be considered appropriate.* 2018-02-07: On xl710 controllers, the BOOTUTIL will display 40GbE under Series. This is correct since this chip splits the signal to 4x10GbE.* 2020-01-28: We have confirmation from Intel that LLDP on FW 7.0 should stay persistent once disabled (even after the reboot). For this, we need the latest Intel driver (24.5 or later).*
</textarea>
What I am looking to do in my custom css (cComment) is to start a new row after each date mentioned from the Style. Is this possible to figure out based on the code provided here?
.cComment {
text-transform: uppercase;
color: red;
}
str-replace()to replace part of string where you could add some new lines after each date, but this would require a regular expression to catch the dates. It would be way easier to add the new line with Javascript codes*, that could help