码迷,mamicode.com
首页 > Web开发 > 详细

HTML 5--Grouping and Nesting Styles

时间:2018-04-29 17:44:29      阅读:206      评论:0      收藏:0      [点我收藏+]

标签:person   ids   styles   图片   touch   tac   enc   com   bat   

1.

示例代码:

 1 <!DOCTYPE html>
 2 <html>
 3 <head>
 4 <style>
 5     h1{
 6         text-align: center;
 7     }
 8     </style>
 9 </head>
10 <body>
11 <h1>BookYourHotel</h1>
12 <ul>
13     <li><a href="html5-2/images/背景.jpg">About us</a></li>
14     <li><a href="html5-2/images/背景1.jpg">Rooms</a></li>
15     <li><a href="html5-2/images/背景2.jpg">Facilities</a></li>
16     <li><a href="html5-2/images/背景3.jpg">Contact Us</a></li>
17 </ul>
18 <hr>
19 <h3>Welcome to the Home page</h3>
20 <P> BookYourHotel welcome you with your warmth and a feeling that each quest is truly special.It offers a cozy and intimate experience amidst the glitz and glamour of South America.Our caring and courteous staffs are ever eager to ensure that all individual needs are cared for with professional expertise and a personal touch.</P>
21 <P>The rooms have been designed with different floor plans to create ensuite Bathrooms .</P>
22 
23 </body>
24 </html>  

 

 

测试结果:
技术分享图片

2.

只有在紧接着<div>后面的<p>标志会变成蓝色

示例代码:

 1 <!DOCTYPE html>
 2 <html>
 3 <head>
 4 <style>
 5     div+p{background-color:blue;}
 6     </style>
 7 </head>
 8 <body>
 9 <h1>Welcome to the page.</h1>
10 <div>
11     <P>This is pagagraph 1</P>
12 </div>
13 <P>This is pagagraph 2</P>
14 
15 <p>This is pagagraph 3</p>
16 </body>
17 </html>  

 

测试结果:
技术分享图片

 

HTML 5--Grouping and Nesting Styles

标签:person   ids   styles   图片   touch   tac   enc   com   bat   

原文地址:https://www.cnblogs.com/Catherinezhilin/p/8971313.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!