` below it too.
> [!NOTE]
-> Don't worry if you don't understand some of the layout properties above, like {{cssxref("position")}}, {{cssxref("top")}}, {{cssxref("bottom")}}, {{cssxref("z-index")}}, etc. We will cover these in detail in our [CSS Layout](/en-US/docs/Learn/CSS/CSS_layout) module.
+> Don't worry if you don't understand some of the layout properties above, like {{cssxref("position")}}, {{cssxref("top")}}, {{cssxref("bottom")}}, {{cssxref("z-index")}}, etc. We will cover these in detail in our [CSS Layout](/en-US/docs/Learn_web_development/Core/CSS_layout) module.
## CSS shapes
@@ -473,5 +473,3 @@ If you do want to use such features in your production work, make sure to test a
## Summary
We hope this article was fun — playing with shiny toys generally is, and it is always interesting to see what kinds of advanced styling tools are becoming available in modern browsers.
-
-{{PreviousMenuNext("Learn/CSS/Building_blocks/Styling_tables", "Learn/CSS/Building_blocks/Debugging_CSS", "Learn/CSS/Building_blocks")}}
diff --git a/files/en-us/learn/css/building_blocks/selectors/attribute_selectors/index.md b/files/en-us/learn_web_development/core/styling_basics/attribute_selectors/index.md
similarity index 66%
rename from files/en-us/learn/css/building_blocks/selectors/attribute_selectors/index.md
rename to files/en-us/learn_web_development/core/styling_basics/attribute_selectors/index.md
index da3e83ed1e32368..eaab3dd06b00a96 100644
--- a/files/en-us/learn/css/building_blocks/selectors/attribute_selectors/index.md
+++ b/files/en-us/learn_web_development/core/styling_basics/attribute_selectors/index.md
@@ -1,10 +1,12 @@
---
title: Attribute selectors
-slug: Learn/CSS/Building_blocks/Selectors/Attribute_selectors
+slug: Learn_web_development/Core/Styling_basics/Attribute_selectors
page-type: learn-module-chapter
---
-{{LearnSidebar}}{{PreviousMenuNext("Learn/CSS/Building_blocks/Selectors/Type_Class_and_ID_Selectors", "Learn/CSS/Building_blocks/Selectors/Pseudo-classes_and_pseudo-elements", "Learn/CSS/Building_blocks")}}
+{{LearnSidebar}}
+
+{{PreviousMenuNext("Learn_web_development/Core/Styling_basics/Basic_selectors", "Learn_web_development/Core/Styling_basics/Pseudo_classes_and_elements", "Learn_web_development/Core/Styling_basics")}}
As you know from your study of HTML, elements can have attributes that give further detail about the element being marked up. In CSS you can use attribute selectors to target elements with certain attributes. This lesson will show you how to use these very useful selectors.
@@ -13,23 +15,21 @@ As you know from your study of HTML, elements can have attributes that give furt
Prerequisites: |
- Basic software installed, basic knowledge of
- working with files, HTML basics (study
- Introduction to HTML), and an idea of how CSS works (study
- CSS first steps.)
+ HTML basics (study
+ Basic HTML syntax), Basic CSS selectors.
|
- Objective: |
- To learn what attribute selectors are and how to use them. |
+ Learning outcomes: |
+
+
+ - The basic concept of attribute selectors.
+ - Presence and value attribute selectors.
+ - Substring matching attribute selectors.
+
+ |