1.

सीमा पर टिप्पनी लिरिक​

Answer»

CSS. Stands for "Cascading Style Sheet." Cascading style sheets are USED to format the layout of Web pages. ... For example, CSS can be used to define the CELL padding of table cells, the style, thickness, and color of a table's border, and the padding around images or other objects.CSS comment is used to add explanatory notes to the code or to prevent the BROWSER from interpreting specific parts of the style sheet. By design, comments have no effect on the layout of a document.A CSS comment starts with /* and ends with */ :

/* This is a single-line comment */ p { color: red; } You can add comments wherever you want in the code:

p { color: red; /* Set text color to red */ } Comments can ALSO span multiple lines:

/* This is. a multi-line. comment */ p { color: red



Discussion

No Comment Found

Related InterviewSolutions