gpt4 book ai didi

html - 我可以在 html 中使用
  • 以表格形式呈现吗?

转载 作者:搜寻专家 更新时间:2023-10-31 22:01:45 25 4
gpt4 key购买 nike

我想使用 <ul> 以表格形式显示数据和 <li>如下图:

mydata mydata mydata mydata mydata mydata
mydata mydata mydata mydata mydata mydata
mydata mydata mydata mydata mydata mydata

我不能使用 <table> ;我必须使用 <ul> <li> .实际上,问题出在 OpenSocial 渲染来自 JSON 的数据时 <li repeater=${Exp}>

最佳答案

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>Untitled Page</title>
<style type="text/css">

ul{
margin: 0 auto;
padding: 0;
}


/* The wider the #list_wrapper is, the more columns will fit in it */
#list_wrapper{
width: 200px
}

/* The wider this li is, the fewer columns there will be */
ul.multiple_columns li{
text-align: left;
float: left;
list-style: none;
height: 30px;
width: 50px;
}

</style>
</head>
<body>
<form id="form1" runat="server">
<div>
<div id="list_wrapper">
<ul class="multiple_columns">
<li>One</li>
<li>Two</li>
<li>Three</li>
<li>Four</li>
<li>Five</li>
<li>Six</li>
<li>Seven</li>
<li>Eight</li>
<li>Nine</li>
</ul>
</div>

<!-- Here's the CSS -->


</div>
</form>
</body>
</html>

您可以在 http://mirificampress.com/permalink/the_amazing_li 中获得更多信息

关于html - 我可以在 html 中使用 <ul> 和 <li> 以表格形式呈现吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2478748/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com