CSS的一些常用样式,如背景、文字、文本、表格、列表等,以及一些常用的场景,如居中对齐、溢出、隐藏元素等。01、常用样式 1.1、background背景 设置元素背景的样式 background,更
顺晟科技
2022-09-13 12:48:28
863
<html>
<head><title></title></head>
<style>
div {
background-image: url(\'/Scripts/A10_skype.png\');
background-repeat: repeat-x;
/*background-repeat: repeat-y;
background-repeat: no-repeat;
background-repeat: repeat;*/
}
</style>
<body>
<div style="border: 1px solid red; width: 1000px; height: 1000px">
</div>
</body>
</html>
09
2022-11
24
2022-10
19
2022-10
07
2022-10
07
2022-10
15
2022-09