I am pretty new to front end. i am exploring it and really loving it.
Here is some problem I encountered. It might be pretty simple.
I have 3 sections on right side of my web page. I want to add a feature to maximise, minimise and close to each of these sections. I am successfull in implementing it using jquery SlideUp() and slideDown() methods.
I am having the buttons like this:
<h2 id = "Heading" style="background-color: grey ;">Movie Names
<button id = "minimise" > - </button>
<button id = "maximise" > + </button>
<button id = "close" > x </button>
</h2>
In my webpage i see a gap between these buttons. I am not sure how to get rid of this space. I want to see something like how windows maximise, minimise and close buttons look.
One more question is how can I add space between Movie Names and these buttons because i want to adjust the positon of these buttons.
Thanks