一般是用 width 屬性設定 table 寬度,如 <table width=』750″>
若在表格裡面顯示一張寬度大於 750 的圖片,表格會被撐大,版面被破壞
可以使用 table-layout 來強制限制寬度 <table style=』table-layout: fixed; width: 750px;』>
參考: Fun with tables
一般是用 width 屬性設定 table 寬度,如 <table width=』750″>
若在表格裡面顯示一張寬度大於 750 的圖片,表格會被撐大,版面被破壞
可以使用 table-layout 來強制限制寬度 <table style=』table-layout: fixed; width: 750px;』>
參考: Fun with tables
節錄至
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('<');
unsigned int right = s.find('>');
if(left==string::npos || right==string::npos)
break;
s = s.erase(left, right - left + 1);
}
s = replaceAll(s, "<", [...]
Embedded Media HTML Generator
線上產生嵌入瀏覽器的媒體播放器語法,支持 Flash 、QuickTime 、Real Media 、Windows Media 等媒體型態
操作介面
產生語法
嵌入瀏覽器
html裡加入自已定義的namespace
[html][/html]
css裡加入
MY\:red { color:#FF0000 }
使用
<MY:red> aaaa </MY:red>
東森新聞
語法
view plain
HTML:
<img src='http://www.ettoday.com/image/latest.gif'/>
<iframe frameborder="3" height="16" marginheight="0" marginwidth="2" name="ticker" scrolling="no" width="99%" src="http://www.ettoday.com/common/ticker.htm">
</iframe>
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"></iframe>
中國時報
<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">
</iframe>
公益關懷速報
view plain
HTML:
<img src="http://www.17885.com.tw/banner/charity.gif" alt="智邦公益館" width="57" height="25" border="0">
<iframe src="http://www.17885.com.tw/banner/charity.htm" [...]