Chalarangelo/30-seconds-of-code

[ BUG ] Missing space in footer section

RuthwikReddy09 opened this issue · 12 comments

There is a space missing after "2017-2023" in the footer section.

Screenshot :
Screenshot 2023-08-27 095913

Steps to Reproduce :

  1. Open https://www.30secondsofcode.org/
  2. Go to the footer section

Hey there -:
Just Simply Add &nbsp in paragraph element

+ &nbsp
Screenshot 2023-08-27 at 2 20 23 PM

can i get assigned to this issue if it's still open?

Is it still open can you assign it to me ?

Can I do it .

Can you assign me?

The CONTRIBUTE.md mentions we are allowed to contribute only to snippets and collections, and this is an issue in the footer section. So, we can't fix this... I think.

Yeah

If this issue is still active, I can work on it

Please assign to me

&nbsp should be added in the footer element. It stands for non breaking space, which is a space that will not break into a new line. There are a couple of more fixes too:

  1. CSS white-space Property: The white-space property allows you to specify how white space should be handled within an element. Ex: white-space: nowrap;
  2. CSS Margins, Padding and letter-spacing Property: These features can be adjusted in CSS to get the required effects.

can you assign it to me if its still on open?

To insert a non-breaking space in a paragraph element, use the HTML entity   .