相关推荐recommended
CSS样式前端HTML页面常用CSS效果实现及其相关配置信息------前端
作者:mmseoamin日期:2023-11-30



	
		
		
		
		HtmlAll
		
		
		
	
	
		
		
		
		
		
		
		对不起,用户名不能为空
		
		
		
		
		百度一下
		点击我链接到百度
		
  • 中国
    • 北京
    • 上海
    • 广州
  • 美国
  • 俄国

CSS样式前端HTML页面常用CSS效果实现及其相关配置信息------前端,CSS样式前端HTML页面常用CSS效果实现及其相关配置信息------前端,第1张

    

        

        

        

        HtmlAll

        

        

        

    

    

        

                  display: block; border-color: red; border-width: 1px; border-style: solid;">

        

        

                  display: block; border: black 1px solid;">

        

        对不起,用户名不能为空

        

        

        

        

        百度一下

        点击我链接到百度

        

                

  • 中国

                    

                          

    • 北京
    •                     

    • 上海
    •                     

    • 广州
    •                 

                

  • CSS样式前端HTML页面常用CSS效果实现及其相关配置信息------前端,CSS样式前端HTML页面常用CSS效果实现及其相关配置信息------前端,第3张

                

  • 美国
  •             

  • 俄国
  •         

        

            

        

    

a{
	text-decoration: none;
	font: red;
}
#baiDuSpan
{
	text-decoration: underline;
	cursor: pointer;
}
/* cursor是鼠标样式,pointer是小手,hand也是,建议使用pointer */
/* wait会显示转圈圈 */
ul{
	list-style-type: none;
}
/* 通过设置list-style-type为none就可以去掉我们无序列表和有序列表的前面的符号 */
#div1{
	position: absolute;
	border: 1px solid black;
	width: 300px;
	height: 300px;
	left: 100px;
	right: 100px;
}
/* position: absolute;设置绝对定位 */

a{

    text-decoration: none;

    font: red;

}

#baiDuSpan

{

    text-decoration: underline;

    cursor: pointer;

}

/* cursor是鼠标样式,pointer是小手,hand也是,建议使用pointer */

/* wait会显示转圈圈 */

ul{

    list-style-type: none;

}

/* 通过设置list-style-type为none就可以去掉我们无序列表和有序列表的前面的符号 */

#div1{

    position: absolute;

    border: 1px solid black;

    width: 300px;

    height: 300px;

    left: 100px;

    right: 100px;

}

/* position: absolute;设置绝对定位 */