Text Color Color has up to 140 colors you can use. The basic colors you can manually type in are: Red, Green, Yellow, Blue, Purple, Black, and White.
Font Style You can use the following values for font style: Normal, Italic, Oblique, Initial (default value), or Inherit (parent value).
Background Position Background position can have the following values: left (top, bottom, center), right (top, bottom, center), and center (top, bottom, center), as well as x% and y%, xpos, ypos, initial(default value), and inherit (parent value).
Border Width Border width can have the following values: Medium, Thin, Thick, Length, Initial (default value), or Inherit (parent value).
Margin Margin can have the following values: Length, % (percent of width), Auto, Initial (default value), Inherit (parent value).
Responsive Design Responsive Design is a strategy for providing custom layouts to devices based on the size of the viewport (browser window). The idea is to serve a single HTML document to every device imaginable, but applying different styles so it matches every device. There are ways to optimize the size and imaging of the website so that the page adapts to the screen size of the device. Thus, the HTML will adapt to the screen size of the device, with the code you placed as a backup if someone is not viewing from your ideal device. Some methods for responsive design include fluid layout (using percentage and other relative units of measurement rather than fixed sizes), CSS Media Queries (which allows designers to apply styles based on screen size), and flexible (fluid) images (applying techniques such as using a percentage for width).With a fluid layout, it helps the coder not have to write as much code to adapt to all devices. With flexible images, be sure there is no width and height attributes, but use max width instead so the image fits to the size of the screen. With CSS media queries, it allows designers to give styles based on media type, such as print, speech, braille, projection, screen, tty, and tv. You can set it to all to apply it to all the styles.