Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!

Recent content by BGB

  1. BGB

    One HTML element referencing another?

    Do you want to draw this. If so it is working. Just remove the !important, it is actually not important. <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width...
  2. BGB

    CSS Bring navbar at center CSS

    Give ul an id or class.
  3. BGB

    CSS Bring navbar at center CSS

    Add this - ul { display: flex; justify-content: center; width: 100%; }
  4. BGB

    THE PROGRAM IS NOT RUNNING

    Because your code has no-ascii character. Change - printf(“%d”,r); to printf("%d", r);
  5. BGB

    HTML & CSS footer

    Add your other codes.
  6. BGB

    Hey everyone!

    Welcome to CodeForum. Wishing you good luck in your coding journey :)
  7. BGB

    HTML & CSS Responsive website.

    You should read this from w3school to understand how it works -HTML Responsive Web Design.
  8. BGB

    HTML & CSS Create a line with custom color

    Can you shoe me the screenshot of the hr?
  9. BGB

    HTML & CSS Create a line with custom color

    That white lines are borders. Remove borders.
  10. BGB

    HTML & CSS Create a line with custom color

    Check this - <!DOCTYPE html> <html lang="en"> <head> <title>HR Color</title> <meta charset="utf-8"> <style> .main { width: 100%; height: 300px; display: flex; flex-direction: column...
  11. BGB

    HTML & CSS A CSS "box" that needs to have a variable width

    Just give a padding to your box and it will adjust the size according to its content - .box { width: fit-content; padding: 0.5rem 1.5rem; border-style: double; border: 2px solid green; border-radius: 20px; background-color: #B3FFB2; color: #FF0000; }
  12. BGB

    JavaScript Getting value from a defined function variable name

    Import UploadMediaViewModel as module - Modules.
  13. BGB

    HTML & CSS Text align on small button

    If you will add this two lines it will align the X vertically. Don't know you want to use it or not - display: inline-flex; align-items: center; #btnclearfilter { display: inline-flex; align-items: center; justify-content: center; width : 19px; height...
  14. BGB

    CSS using <

    This post might help you - greater-than sign (>) selector.
  15. BGB

    HTML & CSS Can someone help me?

    Paste your html and css code here.
Back
Top Bottom