2

TinyMCEにカスタムテーブルスタイルを追加したいのですが、テーブル/ヘッダー/行のスタイルをどのように指定できますか?

    <table class="tdata " border="0" cellpadding="0" cellspacing="0" 
width="600" style="margin-top: 8px; font-family: tahoma, arial, sans-serif; 
width: 600px; color: #000000;">




<th style="margin: 0px; padding: 2px 0px; border-top-width: 2px; 
border-top-style: solid; border-top-color: black;
border-bottom-width: 2px; border-bottom-style: solid; 
border-bottom-color: #aaaaaa; vertical-align: bottom; 
font-size: 10px; width:144px; text-align:center;">Company</th>


     formats : {

     customformat : {inline : 'span', styles : {verticalAlign: 'middle',
 borderWidth: '0px 0px 1px', borderStyle:'none none solid', 
borderbottomcolor: '#aaaaaa', fontFamily: 'tahoma, arial,
 sans-serif', fontSize: '10px', color: '333333'}, attributes : 
{title : 'My custom format'}}
            },
4

2 に答える 2

2

独自のcssファイルをエディターのiframeヘッドに追加すると、エディターのコンテンツに適用されます。このcssファイルを含めるには、tinymce構成パラメーターcontent_cssを使用する必要があります。

tinyMCE.init({
        ...
        content_css : "http::/your_server/your_css/your_custom_content.css"    
});
于 2013-01-31T09:29:12.420 に答える
0

以下を追加してみてください

\ config \ tinyMceConfig.config

<config>

<config key="extended_valid_elements">table[class=tdata]</config>

</config>

等々

于 2017-09-05T20:06:57.837 に答える