EvoTalk

Posts Tagged ‘html

02 四月, 2009

Fixed Html Table Width

Posted by: asd In: Web

一般是用 width 屬性設定 table 寬度,如 <table width=』750″>
若在表格裡面顯示一張寬度大於 750 的圖片,表格會被撐大,版面被破壞
可以使用  table-layout 來強制限制寬度 <table style=』table-layout: fixed; width: 750px;』>
參考: Fun with tables

Tags: ,

27 二月, 2007

Strip Html Tag

Posted by: asd In: C++| Code Snippet| 程式設計

節錄至
Thinking in C++, 2nd edition, Volume 2, 4: Strings in Depth
view plain

C++:

string replaceAll(string s, string f, string r) {

unsigned int found = s.find(f);

while(found != string::npos) {

s.replace(found, f.length(), r);

found = s.find(f);

}

return s;

}

 

string stripHTMLTags(string s) {

while(true) {

unsigned int left = s.find('&lt;');

unsigned int right = s.find('&gt;');

if(left==string::npos || right==string::npos)

break;

s = s.erase(left, right - left + 1);

}

s = replaceAll(s, "&lt;", [...]

Tags:

21 六月, 2006

Embedded Media HTML Generator

Posted by: asd In: 科技新知| 網站推薦

Embedded Media HTML Generator
線上產生嵌入瀏覽器的媒體播放器語法,支持 Flash 、QuickTime 、Real Media 、Windows Media 等媒體型態
操作介面

產生語法

嵌入瀏覽器

Tags:

07 十二月, 2005

custom html tag

Posted by: asd In: Web| 程式設計

html裡加入自已定義的namespace
[html][/html]
css裡加入
MY\:red { color:#FF0000 }
使用
<MY:red> aaaa </MY:red>

Tags:

07 十二月, 2005

即時新聞Html語法

Posted by: asd In: Web| 程式設計

東森新聞

語法
view plain

HTML:

<img src='http://www.ettoday.com/image/latest.gif'/&gt;

<iframe frameborder="3" height="16" marginheight="0" marginwidth="2" name="ticker" scrolling="no" width="99%" src="http://www.ettoday.com/common/ticker.htm"&gt;

</iframe&gt;

PCHOME
語法
view plain

HTML:

<iframe marginwidth=0 marginheight=0 src="http://www.pchome.com.tw/realtimenews/online_news.html" frameborder=0 width=448 scrolling=no height=20 name="I1" align="middle"&gt;</iframe&gt;

中國時報
<br /> width="270" height="100" scrolling="no" frameborder="0"<br /> marginheight="0" marginwidth="0"><br />
語法
view plain

HTML:

<iframe name="rtnews" src="http://news.chinatimes.com.tw/chinatimes/index0513/component/inc-index0513-mainbody01-realtime-content/0,3844,,00.html"

width="270" height="100" scrolling="no" frameborder="0"

marginheight="0" marginwidth="0"&gt;

</iframe&gt;

公益關懷速報

view plain

HTML:

<img src="http://www.17885.com.tw/banner/charity.gif" alt="智邦公益館" width="57" height="25" border="0"&gt;

<iframe src="http://www.17885.com.tw/banner/charity.htm" [...]

Tags:

Page 1 of 212