样式化动态生成的HTML

时间:2016-08-17 10:34:40

标签: html css

我有两个容器,用于存储动态创建的内容

<div id="myTabContent1" class="tab-content">
   <div id="s1" class="tab-pane fade active in">

生成内容后,它看起来像这样:

<div id="myTabContent1" class="tab-content">
  <div id="s1" class="tab-pane fade in">
    <iframe src="something">
      <!DOCTYPE html>
      <html xmlns="http://www.w3.org/1999/xhtml">

我想设置<html>标记的样式。这是我的尝试,但它不起作用。

#myTabContent1 > div > iframe > html{
     padding-left:20px !important;
 }

0 个答案:

没有答案