CSS Comments

To explain a code, CSS comments are used. It makes code easy to understand. Comments are not displayed by the browsers. Both the single or multiple lines statements are written within the /*…………*/ in CSS. Example: <!DOCTYPE html> <html> <head> <style> h3 { color: crimson; /* I am a single-line comment */ text-align: center; } … Read more