Ich habe in meinem Projekt folgendes problem,ich habe 2 knöpfe erstellt.Diese sollen mit einem href beim clicken eine datei öffnen.
Ich weiß nicht woran dies liegen könnte,ich bedanke mich bereits im Voraus für die Hilfe.
Info: Die zu öffnende Datei liegt im gleichen Verzeichniss deswegen kein Pfad beim Link.
HTML code:
<body>
<div>
<button class="button1"><a1 href="support.messages.php" style="text-decoration: none;">Learn More</a1></button>
<button class="button2"><a1 href="support.faq.php" style="text-decoration: none;">Learn More</a1></button>
</div>
</body>
CSS code:
.button1 {
background-color: #2e3d4f;
border: 2px solid #f3c217;
color: #f3c217;
padding: 20px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
border-radius: 500px;
width: 150px;
margin-left: 650px;
margin-top: 600px;
}
.button1:hover {
background-color: #f3c217;
border: 2px solid #f3c217;
color: #2e3d4f;
}
.button2 {
background-color: #2e3d4f;
border: 2px solid #f3c217;
color: #f3c217;
padding: 20px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
border-radius: 500px;
width: 150px;
margin-left: 450px;
margin-top: 600px;
}
.button2:hover {
background-color: #f3c217;
border: 2px solid #f3c217;
color: #2e3d4f;
}
a1:hover {
color: #2e3d4f;
}
Ich weiß nicht woran dies liegen könnte,ich bedanke mich bereits im Voraus für die Hilfe.
Info: Die zu öffnende Datei liegt im gleichen Verzeichniss deswegen kein Pfad beim Link.
HTML code:
<body>
<div>
<button class="button1"><a1 href="support.messages.php" style="text-decoration: none;">Learn More</a1></button>
<button class="button2"><a1 href="support.faq.php" style="text-decoration: none;">Learn More</a1></button>
</div>
</body>
CSS code:
.button1 {
background-color: #2e3d4f;
border: 2px solid #f3c217;
color: #f3c217;
padding: 20px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
border-radius: 500px;
width: 150px;
margin-left: 650px;
margin-top: 600px;
}
.button1:hover {
background-color: #f3c217;
border: 2px solid #f3c217;
color: #2e3d4f;
}
.button2 {
background-color: #2e3d4f;
border: 2px solid #f3c217;
color: #f3c217;
padding: 20px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
border-radius: 500px;
width: 150px;
margin-left: 450px;
margin-top: 600px;
}
.button2:hover {
background-color: #f3c217;
border: 2px solid #f3c217;
color: #2e3d4f;
}
a1:hover {
color: #2e3d4f;
}
Zuletzt bearbeitet: