How to add CSS styles Styles to Elements with Particular
Attributes?
Answer Posted / swapna
The style rule below will match all input elements that has
a type attribute with a value of "text"
Input[type="text"] {background-color: blue}
id Selector
Defining styles for HTML elements with the id selector. The
id selector is defined as a #.
The style defined below will effect the element that has an
id attribute with a value of "green? ie., id=?green?
Ex: #green {color: green}
The style rule below will match the p element that has an
id with a value of "para1? ie., <p id=?para1?>
p#para1
{
text-align: center;
color: red
}
Do NOT start a class name or ID name with a number
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
What are the categories in which the design patterns can be divided?
Can we have this pattern implemented using static class?
Is singleton a design pattern?
What is a lazy initialization in singleton?
What is the difference between 3 tier and n tier architecture?
Write the code for a singleton class?
What is lexi design pattern?
What is the design pattern?
What non-visual coding tools are available for web design?
What is the gang of four design pattern?
What are the examples of the behavioral design patterns?
What is clean architecture?
Contact a system development program in your organization. Research how they analyzed their SYSTEM OF INTEREST (SOI), its OPERATING ENVIRONMENT, and their respective system elements. How was this analysis reflected in the SOI architecture?
What is the builder pattern?
What is a behavioral design pattern?