Images and Divider in Card Control

19 Dec 20223 minutes to read

Images

The Card supports to include images within the elements, you can add image as direct element anywhere inside card root by adding the e-card-image class to div element. Using the class defined, you can write CSS styles to load images to that element.

NOTE

By default, card images occupies full width of its parent element.

    <div class = "e-card">
        <div class="e-card-image">
        </div>
    </div>

Title

Card image is supported to include a title or caption for the image. By default, Title is placed over the image on left-bottom position with overlay.

    <div class = "e-card">
        <div class="e-card-image">
            <div class="e-card-title"></div>
        </div>
    </div>
<!--element which is going to render the Card-->
<div class="e-card">
    <div class="e-card-image">
        <div class="e-card-title">JavaScript </div>
    </div>
    <div class="e-card-content"> JavaScript Succinctly was written to give readers an accurate, concise examination of JavaScript objects and their supporting nuances, such as complex values, primitive values, scope, inheritance, the head object, and more. </div>
</div>

<style>
    .e-card-image {
        background: url('./sample.jpg');
        height: 160px;
        ;
    }

    .e-card {
        width: 300px;
        margin: auto;
    }
</style>

CSS Card Control with images and divider

Divider

Divider used to separate the elements inside the card. You can add divider inside the card elements to separate it.

  • Place the div element with e-card-separator class inside the card element for adding a divider.
<div style="margin: 50px;">
    <div tabindex="0" class="e-card" id="basic">
        <div class="e-card-title">Explore Cities</div>
        <div class="e-card-separator"></div>
        <div class="e-card-content">
            Sydney is a city on the east coast of Australia. Sydney is the capital city of New South Wales. About four million people
            live in Sydney which makes it the biggest city in Oceania.
        </div>
        <div class="e-card-separator"></div>
        <div class="e-card-content">
            New York City has been described as the cultural, financial, and media capital of the world, and exerts a significant impact
            upon commerce and etc.,
        </div>
        <div class="e-card-separator"></div>
        <div class="e-card-content">
            Malaysia is one of the Southeast Asian countries, on a peninsula of the Asian continent, to a certain extent; it can be recognized
            as part of the Asian continent.
        </div>
    </div>
</div>

CSS Card Control with images and divider

NOTE

View Sample in GitHub.

See also