自己添加的广告CSS样式是哪个文件控制的

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了自己添加的广告CSS样式是哪个文件控制的相关的知识,希望对你有一定的参考价值。

参考技术A 当然是引用的外部 .CSS 文件,如果是在当页面直接写的话,那只能当页修改。 参考技术B <style>
*padding:0;margin:0;
#scrollwidth:246px;height:369px;overflow:hidden;border:solid 1px #666;
#scroll ulwidth:738px;overflow:hidden;animation:scroll 10s linear infinite;
@keyframes scroll0%transform:translate(0,0);50%transform:translate(-246px,0);100%transform:translate(-492px,0);
#scroll liwidth:246px;float:left;list-style:none;
#scroll imgwidth:246px;height:369px;
</style>
<div id="scroll">
<ul>

</ul>
</div>

html 通过jQuery进行css样式注入。基本上调用body / head附加一个样式标记,你自己的css将添加一个新的标记和你的样式

<!DOCTYPE html>
<html>
  <head>
		<title>css injection | xero.nu</title>
		<script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
		<style type="text/css">
			body{
				font: normal 12pt "Times New Roman", serif;
				background: #ccc;
				color: #000066;
			}
			a, a:visited {
				color: #0000ff;
			}
		</style>
	</head>
	<body>
		<h1>css injection</h1>
		<p>hello world! this is <a href="http://xero.nu/">xero</a>!</p>
		<p>click the button below and inject new css styles into the page via javascript!</p>
		<p><input type="button" value=" inject! " onclick="test()" />
		<script type="text/javascript">
			function test() {
				/* calling body append will add your new styles to the bottom of the page and override any existing ones */
				$('head').append('<style type="text/css">body{font:normal 14pt Arial, Helvetica, sans-serif;background:#000;color:#fff}a,a:visited{color:#ccc;text-decoration:none;border-bottom:1px solid #00ff00}a:hover{color:#00ff00;border-color:#ccc}</style>');
			}
		</script>
	</body>
</html>

以上是关于自己添加的广告CSS样式是哪个文件控制的的主要内容,如果未能解决你的问题,请参考以下文章

js如何修改样式?

js控制iframe内部css样式

博客园自定义样式(去广告公告栏加头像按钮样式)

CSS样式里面怎么设置广告滚动

AdblockPlus自定义屏蔽广告

设计网页的时候如何在css样式中控制背景图片的高度?