Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found

All comments

  • David Etuk• 80

    @Dhei-vid

    Submitted

    • I could not figure out how to reposition the border-bottom property. So I would love some help with some tricks on how to insert border-bottom.
    P
    Delian Zidarov• 150

    @delianZidarov

    Posted

    Based on your question I think you are talking about the sections where the underline is below part of the text. I'm not sure you can do that with the boarder property but you can do it using ::before and :: after pseudo elements. This will have a span with the words in it underlined and the bottom of the words over the underline. You can also position the underline however you like in respect to the span. Hope this helps HTML <span class="underline-me">HELLO</span> CSS .underline-me { position: relative; } .underline-me::after { position: absolute; content: ""; width: 100%; height: 4px; bottom: 2px; left: 0; background-color: pink; z-index: -1; }

    Marked as helpful

    0
  • Parthib45• 220

    @Parthib45

    Submitted

    Hey there, I'm having trouble setting up the background on desktop view, hoping to get some feedback on what i can do for that and more

    Fylo data storage css

    #accessibility

    1

    P
    Delian Zidarov• 150

    @delianZidarov

    Posted

    Hey you can try using background-position: bottom in your css where you are setting the background image or background-position-y: 100%; background-position-y/x gives you more control on how things are positioned

    0