作者smile0052 (笑笑)
看板Web_Design
标题Re: [问题] 请问如何用CSS取代这些HTML语法?
时间Sat Feb 10 16:40:21 2007
※ 引述《sarsspear (沙士比亚)》之铭言:
: 如题,如何把这些语法改用CSS设定?
: <table border="1" align="center" cellpadding="0" cellspacing="0">
: <iframe width="380" height="320" marginwidth="1" marginheight="1"
: scrolling="no" border="0" frameborder="0">
: <img width="100" height="200" border="0">
: <a target="_blank" alt="照片">
--------------------
CSS
.tab{
border:1px;
text-align:center;
border-collapse:collapse;}
.if{
width:380px;
height:320px;
margin:1px;
border:0;
overflow:hidden;}
.img{
width:100px;
height:200px;
border:0;}
----------------------
HTML
<table class="tab">
<ifname class="if">
<img class="img">
----------------------
你的HTML码不够完整所以只能这样告诉你
写法有很多种,用一个最简单的方式让你了解而已^___^
--
※ 发信站: 批踢踢实业坊(ptt.cc)
◆ From: 122.127.33.32