問題のあるページへのリンクは次のとおりです。http://www.wrightspecialty.com/brokers-agents-questionnaire.html?view = foxcontact
私が使用しているフォームビルダーには制限があります。テキストボックスや入力などのラベルでない限り、テキストを挿入できません。IE9、Firefox、Safari、Chromeはすべて正しく表示されます。IE7にはサポートがなく、IE8には制限があります。
だから私は:before疑似セレクターを使ってコピーを挿入しようとしています。IE8以下では、GoogleのJavaScriptを使用しています。これはIE8ではなくIE7で機能します
<!--[if lt IE 9]>
<script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script>
<![endif]-->
そして、私はcssの各要素をそのようにターゲットにしています:
.foxcontainer_brokers div:nth-child(11):before, .foxcontainer_brokers div:nth-child(14):before, .foxcontainer_brokers div:nth-child(17):before, .foxcontainer_brokers div:nth-child(20):before, .foxcontainer_brokers div:nth-child(23):before, .foxcontainer_brokers div:nth-child(23):before, .foxcontainer_brokers div:nth-child(26):before, .foxcontainer_brokers div:nth-child(29):before {
float: left;
margin-left: 0;
margin-bottom: 15px;
padding-left: 3px;
width: 100%;
font-weight: bold;
clear: both;
font-size: 12px;
}
.foxcontainer_brokers div:nth-child(11):before {
content: "Schools 8211 - Elementary and Secondary Schools";
}
etc...
誰か考えがありますか?前もって感謝します。