I want to change the text color to white without using a single line of css code is it possible to do that using any Bootstrap Class?
Go to Format > Font > Font. + D to open the Font dialog box. Select the arrow next to Font color, and then choose a color.
To specify white, for example, use #ffffff. To specify bright blue, use #0000ff. For purple, use #ff00ff.
Use Bootstrap-v4.
class="text-white"
Reference: https://v4-alpha.getbootstrap.com/utilities/colors/
The classes for text colors are: .text-muted, .text-primary, .text-success, .text-info, .text-warning, and .text-danger
there is no white text color in default bootstrap classes.
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<p class="text-muted">This text is muted.</p>
<p class="text-primary">This text is important.</p>
<p class="text-success">This text indicates success.</p>
<p class="text-info">This text represents some information.</p>
<p class="text-warning">This text represents a warning.</p>
<p class="text-danger">This text represents danger.</p>
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With