21

I'm trying to insert the following code but it is not working. I am not able to get 100% height with this. Can anyone help me? Thanks!

<body style="overflow:hidden;">
<TABLE align=left width=234 border="0" cellpadding="0" cellspacing="0">
<TR>
    <TD valign=top align=center WIDTH="234" >
        <object data="EmbedPage.html" type="text/html"  style="width: 230px;height:100%;"></object>
    </TD>
</TR>
</TABLE>
</body>

Update Query VBA Access

I am wanting to copy information from the Id column in the Products table to ProductsId column in another table using vba/sql in Microsoft Access. I was just wondering how I would be able to do this.

I had written an INSERT query but I wasn't sure if this would move the Id from the products table and I need the information in both.

I think an UPDATE query would be best but I'm not too sure on how to write the SET part of the query. The two tables are joined by Client but can I put a WHERE clause into the SET?

4

5 に答える 5

2

テーブルから外すだけ。

<BODY style="overflow:hidden; height:100%;">

<object data="http://www.misgeret.co.il/Ebay/Famus/SideMenuFamus.html" type="text/html"  style="float:left;width:230px;height:100%"></object>

</BODY>

http://jsfiddle.net/ma9ic/QtKMa/5/

テーブル セルの 100% の高さは常に苦痛です。技術的に言えば、TD には高さがありません (内容に依存するため)。ブラウザに求めているのは、子を親の 100% にすることです。これは子の 100% であり、親の 100% です。これが問題になる可能性があることがわかります。

TD に明示的な高さを追加し、テーブルで table-layout:fixed を使用してみてください。少なくともそのようにして、ブラウザは子の高さを必要とせずに親の高さを認識しますが、それでも機能しない場合があります。

これについてどうするかを再考する必要があるかもしれません。

これは、設定された高さとiframeを使用した結果を示しています

<BODY style="overflow:hidden;height:100%;">

<TABLE align=left width=234 border="1" cellpadding="0" cellspacing="0">
<TR>
    <TD valign=top align=center WIDTH="234" height="1000">
    <iframe src="http://www.misgeret.co.il/Ebay/Famus/SideMenuFamus.html" style="border:0px #FFFFFF none;" name="myiFrame" scrolling="no" frameborder="0" marginheight="0px" marginwidth="0px" height="100%" width="100%"></iframe>
    </TD>
</TR>
</TABLE>

</BODY>

http://jsfiddle.net/ma9ic/QtKMa/6/

お役に立てれば

于 2013-05-16T12:16:13.813 に答える