请问淘宝店铺装修里面的CSS是什么东西呢?都有什么作用?

html-css023

请问淘宝店铺装修里面的CSS是什么东西呢?都有什么作用?,第1张

CSS是网页制作过程中用到的一种语法格式,一般称之为样式表,顾名思义它的作用就是进行页面布局用的。具体到淘宝店铺装修这里,淘宝官方会给予店家一定的修改店铺外观整体布局的权利,这个权利就体现在后台给了CSS接口,如果你懂CSS的话,就可以写出符合自己设计需要的页面布局。

一般情况下都是用CSS的fixed固定定位,但不兼容IE6,在IE6下,用absolute方式。

下面给出简单的兼容写法代码实现。仅供参考:

<style>    

*{margin:0px padding:0px}    

body {height:2000px}    

div {width:100px height:100px background:#ccc position:absolute bottom:0px right:0px}    

</style>    

<script>    

window.onload=function(){    

var oDiv = document.getElementById('div1')    

if(window.navigator.userAgent.indexOf('MSIE 6') != -1)    

{    

window.onscroll = function(){    

var scrollTop = document.documentElement.scrollTop || document.body.scrollTop    

var top = document.documentElement.clientHeight - oDiv.offsetHeight + scrollTop      

oDiv.style.top = top + 'px'    

}

}    

else    

{    

oDiv.style.position='fixed'    

}    

}    

</script>