Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
cfquery ループを実行してから、1 つのクエリ列の値 (テキスト) をアンカー タグに表示しました。
例えば
<cfloop query="testQuery"> <a href="##">#testQuery.Title#</a> </cfloop>
testQuery.Title 変数が「文字の説明/発音を定義します (東アジアのタイポグラフィ用)」を返すと仮定しますが、例の文を分割する必要があります
「文字の説明/発音を定義し ます (東アジアのタイポグラフィ用)」
リンクをラッパーに入れて、幅を設定するだけです。
<cfloop query="testQuery"> <div style="width:200px !important"><a href="##">#testQuery.Title#</a></div> </cfloop>
他に問題がある場合/機能しない場合はお知らせください。