So I am currently in a Business Computer Systems class at my University. I have to create an excel portfolio of the work we complete in this class. I currently have a data list, however I want to be able to make a https://nox.tips/ data list or a drop down menu where the person can click https://xender.vip/ any of the files and get taken to that file! However, I do not know how to create this tag. If someone could help me that would be greatly appreciated! If deeper explanation is needed, I can DM you a picture of my currently tags to help! Thank you!
is this what you expect??
<div class="dropdown">
<span>Mouse over me</span>
<div class="dropdown-content">
<p>Hello World!</p>
</div>
</div>
<style>
.dropdown {
position: relative;
display: inline-block;
}
.dropdown-content {
display: none;
position: absolute;
background-color: #f9f9f9;
min-width: 160px;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
padding: 12px 16px;
z-index: 1;
}
.dropdown:hover .dropdown-content {
display: block;
}
</style>
This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.