本文介绍了css仅用于div。不是整页的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
你好
我在页面中写了css代码。在这里我有一个表格控件在div我想这个css只用于这个div而不是整页。
css代码以下
hello
I written css code in a page. In this I have a table control in div I want to that css use only for this div not entire page.
css code following
<style type="text/css"">
img, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video
{
margin: 0;
padding: 0;
border: 0;
outline: 0;
font-size: 100%;
vertical-align: baseline;
background: transparent;
}
</style>
推荐答案
并以这种方式访问css中的测试类
and access that test class in css
.div1 img,.div1 ol,.div1 ul.......{...}
快乐编码!
:)
Happy Coding!
:)
<style type="text/css"">
div.Mydiv
{
margin: 0;
padding: 0;
border: 0;
outline: 0;
font-size: 100%;
vertical-align: baseline;
background: transparent;
}
< / style>
这里Mydiv是你div的class属性............
这篇关于css仅用于div。不是整页的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!