Found 1566 Articles for CSS

What are Inline List Items in CSS

Sreemaha
Updated on 01-Jul-2020 11:01:07

2K+ Views

Use Inline List Items to build a horizontal navigation bar. Set the <li> elements as inline.ExampleYou can try to run the following code to create horizontal navigation bar:Live Demo                    ul {             list-style-type: none;             margin: 0;             padding: 0;          }          .active {             background-color: #4CAF50;             color: white;          }          li {             border-bottom: 1px solid #555;             display: inline;          }                              Home          Company          Product          Services          Contact          

Set a border around navbar with CSS

Chandu yadav
Updated on 01-Jul-2020 10:54:41

7K+ Views

To add a border around navbar, set border to ul {    border: 2px solid blue; }ExampleYou can try to run the following code to set borderLive Demo                    ul {             list-style-type: none;             margin: 0;             padding: 0;             width: 200px;             border: 2px solid blue;          }          li a {             display: block;             background-color: #F0E7E7;          }          .active {             background-color: #4CAF50;             color: white;          }          li {             text-align: center;             border-bottom: 1px solid #555;          }                              Home          Company          Product          Services          Contact          

Set background image as fixed with CSS

Prabhas
Updated on 01-Jul-2020 10:53:46

653 Views

Use the background-attachment property to display the background image as fixed.ExampleYou can try to run the following code to implement the background-attachment property −Live Demo                    body {             background-image: url("https://www.tutorialspoint.com/videotutorials/images/tutor_connect_home.jpg");             background-repeat: no-repeat;             background-attachment: fixed;             background-position: right top;          }                     Background Image    

Set all the top border properties in one declaration using CSS

varun
Updated on 01-Jul-2020 10:53:04

210 Views

Use the border-top property in CSS to set all the top border properties in a single declaration.ExampleYou can try to run the following code to implement the border-top property −Live Demo                    p {             border-style: solid;             border-top: thick dashed #FFFF00;          }                     This is demo text    

Set style to current link in a Navigation Bar with CSS

Giri Raju
Updated on 01-Jul-2020 10:52:03

1K+ Views

To set a style to current link in a navigation bar, add style to .active. You can try to run the following code to style current link:ExampleLive Demo                    ul {             list-style-type: none;             margin: 5;             padding: 5;          }          li a {             display: block;             width: 70px;             background-color: #F0E7E7;          }          .active {             background-color: #4CAF50;             color: white;          }                              Home          Company          Product          Services          Contact          

Create a transparent box with CSS

Ankith Reddy
Updated on 01-Jul-2020 10:51:39

640 Views

To create a transparent box with CSS, you can try to run the following codeExampleLive Demo                    div {             background-color: #808000;             padding: 20px;          }          div.myopacity {             opacity: 0.4;             filter: alpha(opacity=80);          }                     Heading       Check trensparency in the below box:                opacity 0.4                      opacity 1          

Set the opacity for the background color with CSS

varun
Updated on 01-Jul-2020 10:50:40

262 Views

To set the opacity for the background color, use the opacity property with RGBA color values.ExampleYou can try to run the following code to implement the opacity property:Live Demo                    div {             background: rgb(40, 135, 70);             padding: 20px;          }          div.first {             background: rgba(40, 135, 70, 0.2);          }          div.second {             background: rgba(40, 135, 70, 0.6);          }                     RGBA color values       20% opacity       60% opacity       Default Opacity    

Style all visited links with CSS

George John
Updated on 01-Jul-2020 10:50:13

406 Views

To style all visited links, use the CSS :visited selector.ExampleYou can try to run the following code to implement the :visited selectorLive Demo                    a:link, a:visited {             background-color: white;             color: black;             border: 1px solid blue;             padding: 30px 30px;             text-align: center;             text-decoration: none;             display: inline-block;          }          a:hover, a:active {             background-color: red;             color: white;          }                     Demo Link    

Add transparency to the background with CSS

usharani
Updated on 01-Jul-2020 10:49:44

234 Views

Use the opacity property to add transparency to the background of an element. You can try to run the following code to work.ExampleLive Demo                    div {             background-color: #808000;             padding: 20px;          }          div.one {             opacity: 0.2;             filter: alpha(opacity=20);          }          div.two {             opacity: 0.5;             filter: alpha(opacity=50);          }                     Heading       Check transparency in the below section:                opacity 0.2                      opacity 0.5                      opacity 1          

Role of CSS :visited Selector

varma
Updated on 01-Jul-2020 10:49:20

148 Views

Use the CSS : visited selector to style all visited links.ExampleYou can try to run the following code to implement the :visited selector:Live demo                    a:link, a:visited {             background-color: white;             color: black;             border: 1px solid blue;             padding: 30px 30px;             text-align: center;             text-decoration: none;             display: inline-block;          }          a:hover, a:active {             background-color: red;             color: white;          }                     Demo Link    

Advertisements