Follow

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use
Contact

how to add notification bar under header

First of all i am new to css and i want a black notification bar right under header for free shipping, and the text will be white. This should be full width to browsers

i tried to do it with css and heade::after but my text stays on left corner and can not be centered

header::after {
  content: "test test text";
    margin: 0 -9999rem;
  /* add back negative margin value */
  padding: 0.25rem 9999rem;
  background: #101010;
    color: #ffffff;
}

MEDevel.com: Open-source for Healthcare and Education

Collecting and validating open-source software for healthcare, education, enterprise, development, medical imaging, medical records, and digital pathology.

Visit Medevel

>Solution :

I don’t understand the reason for those weird paddings and margins but simply text-align:center along with display:block should work.

header::after {
  content: "test test text";
   margin: 0 -9999rem;
  /* add back negative margin value */
  padding: 0.25rem 9999rem;
  background: #101010;
  color: #ffffff;
  text-align:center;
  display:block;
}
<header>I am header</header>
Add a comment

Leave a Reply

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use

Discover more from Dev solutions

Subscribe now to keep reading and get access to the full archive.

Continue reading