Skip to main content

WDS65 - Attribute Selecting in CSS

In the last article, we learned about creating tooltips using CSS and we can now place help text on web pages easily using CSS. While using CSS so far, we are selecting elements by their tags, class or id. Today we are going to learn to select elements based on attributes they have so that you can select elements more easily. 
Let's begin...

CSS [attribute] Selector

With the help of [attribute] selector, we can select elements with the help of specified attribute. To select all the images with attribute alt, we can write following CSS:
img[alt] {
    border: 1px solid black;
}
This code selects all the images which have alt attribute and apply a border to them.

CSS [attribute="value"] Selector

With the help of [attribute="value"] selector, we can select elements with the help of specified attribute and value. To select all the images with attribute alt and its value equal to nature, we can write following CSS:
img[alt="nature"] {
    border: 1px solid black;
}

CSS [attribute~="value"] Selector

With the help of [attribute~="value"] selector, we can select elements with the help of specified attribute and value containing specified word. To select all the images with attribute alt and its value containing word nature, we can write following CSS:
img[alt~="nature"] {
    border: 1px solid black;
}
This will select values like "nature", "beautiful nature" but not like "tree", "badnature". That is value should contain that word in space separated format.

CSS [attribute*="value"] Selector

With the help of [attribute*="value"] selector, we can select elements with the help of specified attribute and value containing specified word. To select all the images with attribute alt and its value containing word nature, we can write following CSS:
img[alt*="nature"] {
    border: 1px solid black;
}
This will select values like "nature""beautiful nature","badnature". That means value does not need to b the whole word.

CSS [attribute|="value"] Selector

With the help of [attribute|="value"] selector, we can select elements with the help of specified attribute and value starting with the specified word. To select all the images with attribute alt and its value starting with word nature, we can write following CSS:
img[alt|="nature"] {
    border: 1px solid black;
}
The value should be alone the whole word or followed by a hyphen and then another word. That means "nature-good", "nature bad" will be selected but "natureBad" will not be selected.

CSS [attribute^="value"] Selector

With the help of [attribute^="value"] selector, we can select elements with the help of specified attribute and value starting with the specified word. To select all the images with attribute alt and its value starting with word nature, we can write following CSS:

img[alt^="nature"] {
    border: 1px solid black;
}

The value should not be whole word. That means "nature-good""nature bad" will be selected but "natureBad" will also be selected.

CSS [attribute$="value"] Selector

With the help of [attribute$="value"] selector, we can select elements with the help of specified attribute and value ending with the specified word. To select all the images with attribute alt and its value ending with word nature, we can write following CSS:
img[alt$="nature"] {
    border: 1px solid black;
}
This will select values like "nature""beautiful nature" ,"badnature". That is value need not to be the whole word.

That's all for today. Today we learned 7 ways to select HTML elements in CSS using attributes and values. This will make the process of selcting elements in some cases. In next article, we are going to learn about customizing forms using CSS.
Till the #keepCoding.



Comments

Popular posts from this blog

Python Project - 1 (Password Locker)

Hello reader, this is my first post on this blog. I created this blog for various purposes including First and most importantly improve my coding Help others to learn various concepts in programming  To complete my hobby of blogging So, I am starting various series simultaneously, hope I will able to continue them. In this " Python Project " series, I will create simple python projects and will give step by step procedure to do that. I think you should first try to complete code yourself, then if you get stuck anywhere, feel free to check steps, refer complete code or comment for more help. Let's begin... Idea and Need: You probably have accounts on many different websites. It is a bad habit to have the same password and it is difficult to remember all passwords. So it is a good idea to use "Password Manager Software". So why not create it yourself? So let's see what steps you should follow... Steps: We have to create a menu which has the...

WDS15 - Handle your Metadata

In the last short article we learned about: HTML iframe element to display webpage inside webpage Now in this article, we are going to see something which will not make the direct impact on how you are seeing your webpage but will do a lot of background work. So let's get started... In the very first article on HTML, while learning basic HTML page structure we divided HTML document into two main parts: head and body. This head contains metadata about HTML document which we write in the body of HTML. Ler's see how to write this metadata... HTML <meta> element <meta> element is used to specify about author of webpage, various tags for article, page description and many other things. Metadata is used by browsers to decide how to display content and search engines to classify web pages according to tags and keywords. HTML Character set A defined list of characters recognized by the computer hardware and software. Each character is represented by a num...

WDS5 - Inspect HTML and Other Tags

In the last article we learned: 3 Important HTML Rules Nested and empty elements HTML Attributes   Let's start today with some important points: HTML Headings  We have already seen HTML headings represented by tags <h1> to <h6> where <h1> is most important heading while <h6> is least important heading. Now I am mentioning some important points which you should follow when using HTML headings: Search engines use the headings to index the structure and content of your web pages. This is important because you should always follow an order of heading tags. <h1> should be used for main heading, <h2> for less important subheadings and so on. In fact, it is commonly followed a system of using only one <h1> tag in the document to represent heading of your document and nowhere else. Heading tags should only be used for headings and not for making text bigger or bold. Different tags are used for this operations and we will ...