ie11忽略了此CSS:
.canopy_banner .banner_text {
max-width: 335px;
width: 100%;
margin: 0 auto;
text-align: center;
}
html:
<div class="row-fluid-wrapper">
<div class="row-fluid">
<div class="span5">
<div class="banner_text">
{% if module.banner_content.tagline %}<span class="accent_text" style="color:{{ module.banner_content.tagline_color.color }};">{{ module.banner_content.tagline }}</span>{% endif %}
{% if module.banner_content.h1_header %}<h1>{{ module.banner_content.h1_header }}</h1>{% endif %}
{% if module.banner_content.richtext_field %}{{ module.banner_content.richtext_field }}{% endif %}
{% if module.banner_content.buttons_ %}{% if module.button_group.type_of_buttons == "cta" %}{% for item in module.button_group.cta_repeater %}{% cta guid="{{ item }}" %}{% endfor %}{% elif module.button_group.type_of_buttons == "nam" %}{% for item in module.button_group.link_repeater %}<a href="{{ page_by_id(item.link_url).absolute_url }}" class="cta_button">{{ item.link_text }}</a>{% endfor %}{% endif %}{% endif %}
</div>
</div>
<div class="span7 ban_hide">
{% if module.banner_content.right_side_image.src %}
<img src="{{ module.banner_content.right_side_image.src }}" alt="{{ module.banner_content.right_side_image.alt }}" style="width: {{ module.banner_content.image_width }}%;">
{% endif %}
</div>
</div>
</div>
,但是其余所有样式都将应用于页面。我不知道为什么。有什么建议吗?
答案 0 :(得分:0)
仔细检查您的ID,类等,以确保您正确引用了它们,并且未丢失任何子元素,例如import pandas as pd
from sklearn.tree import DecisionTreeClassifier
data = pd.DataFrame()
data['A'] = ['a','a','b','a']
data['B'] = ['b','b','a','b']
data['C'] = [0, 0, 1, 0]
data['Class'] = ['n','n','y','n']
tree = DecisionTreeClassifier()
one_hot_data = pd.get_dummies(data[['A','B','C']],drop_first=True)
tree.fit(one_hot_data, data['Class'])
下的div
,li
等嵌套。
查看该代码段的html代码也将有所帮助