How to Set Element Background Color and Text Font Size in CSS
In CSS, setting an element’s background color and changing text font size can be achieved by combining two properties: background-color
is used to set the background color, while font-size
is used to set the font size. Here’s a simple CSS code example showing how to set these two properties simultaneously:
1 | .element { |
In this example, .element
is a selector that specifies which HTML element these styles should be applied to. The background-color
property is used to set the element’s background color, which is set to red (#ff0000
). The font-size
property is used to set the size of the text within the element, which is set to 20 pixels.
By applying this CSS code to an HTML element, you can simultaneously change both the element’s background color and text font size.