Css style not applying | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Css style not applying

So I'm just beginning with HTML and CSS in visual studio and for practice I'm making a clone of youtube..i want to add Tooltips for buttons like search..thus i added a div block for Tooltip next to the buttons...but css styling for the class tooltip isnt working but when style is written in-line(tag) it works...this has happened before with out blocks too..i tried in both chrome and brave browsers HTML CODE: <div class="middle"> <input class="search" type="text" placeholder="Search" > <button class="searchbutton"> <img class="searchi" src="icons/search.svg"> <div><p class="tooltip">Search</p></div> </button> <button class="audiobutton"><img class="voicei" src="icons/voice-search-icon.svg">`your text` <div class="tooltip" >Search with Audio</div> </button> </div> CSS code: .tooltip{background-color:grey;color:black} other codes in the css file work perfectly fine

11th Sep 2023, 11:00 AM
Shankara Subramanian Mohan
Shankara Subramanian Mohan - avatar
3 Answers
+ 1
Shankara Subramanian Mohan You should have added your code file with this question so it would have been easier to understand where the problem is.
11th Sep 2023, 2:42 PM
EAJUDDIN
EAJUDDIN - avatar
+ 1
Don't put div and p(block elements) in buttons (inline elements). Use the same structure for both buttons. Try using span element: <button class="searchbutton"> <img src="icon/search.svg"/> <span class="tooltip">Search</span> </button>
11th Sep 2023, 10:42 PM
Luca Corvino
Luca Corvino - avatar
0
imo based on what i see, u need to add style tag when you writing css code inside html file where it should be like this: CSS code: <style> .tooltip { background-color:grey; color:black; } </style> edit: also dont forget to link your css file to your html if you got separated file:)
12th Sep 2023, 4:14 PM
milk
milk - avatar