0

タブ付きのページを作っています。そして、タブをタブとして作成する方法がわからないため、現在はボタンとして作成しているタブ内にタブを作成する必要があります。誰でもそれを作る方法を教えてもらえますか?

以下は私のコードです。

<div id="container">
    <!-- Start Tabs !-->
    <div class="tab-container">

    <div id="c1">
        <a href="#c1" title="Projects">Projects</a> <!-- This is your actual tab and the content is below it !-->
        <div class="tab-content">  <!-- tab-container > div > div in the CSS !-->
            <button id="create">Create</button>
            <button id="edit">Edit</button>
        </div>
    </div>
4

1 に答える 1