Wenn die Maus über die Navigationsbeschriftung fährt, hat dies keine Auswirkung. Wie kann ich das Problem finden?
萝卜
萝卜 2018-11-07 14:54:33
0
1
1106

<!DOCTYPE html>

<html>

<head>

<meat charset="utf-8">

<title>Elemente auf Blockebene in Inline-Elemente konvertieren</title> ;

<link rel="shortcut icon" type="image/x-icon" href="images/favicon.ico">

<style type="text/css">

p { display:inline;width:200px;height:200px;backgroud-color:#ccc;}

b{display:block;}

/*div{display:inline-block;height:30px;width:400px; Hintergrund -color:pink;}*/


.box{width:100px;height:40px;background-color:#ccc;line-height: 40px;text-align: center;}

.main{ width :100px;height:100px;background-color:pink;line-height:100px; text-align:center;display:none;}

.box:hover .main{display:block;}

</ style> ;

</head>

<body>

<p>Elemente auf Blockebene in Inline-Elemente konvertieren</p><span>123</span>

<b>Inline-Elemente Hauptsächlich Elemente auf Blockebene</b>

<div>Markup in Inline-Blockelemente konvertieren</div><span>123</span>

<div class="box"> Navigation</div>

<div class="main">Kleines Menü</div>

</body>

</html>


萝卜
萝卜

Antworte allen(1)
天国之秋

<div class="box">导航</div>

<div class="main">小菜单</div>

.box:hover .main {}

说明 .main 在 .box 内部

<div class="box">导航

    <div class="main">小菜单</div>

</div>


Beliebte Tutorials
Mehr>
Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage
Über uns Haftungsausschluss Sitemap
Chinesische PHP-Website:Online-PHP-Schulung für das Gemeinwohl,Helfen Sie PHP-Lernenden, sich schnell weiterzuentwickeln!