I have the following code
<div class="item" id="item1">Text Goes Here</div>
<div class="admin_tools" id="tools1">Link 1 | Link 2 | Link 3</div>
<div class="item" id="item2">Text Goes Here</div>
<div class="admin_tools" id="tools2">Link 1 | Link 2 | Link 3</div>
admin_tools div is hidden from view by default. When a mouse is moved over the item div, it should be replaced with the contents of admin_tools.
How would I go about doing that? Preferably… a CSS only solution.
The layout isnt fixed either. Can be altered if necessary.
I changed a couple of things, but what about something like this?