HTML DOM Ul অবজেক্ট

  • পূর্ববর্তী পৃষ্ঠা <u>
  • পরবর্তী পৃষ্ঠা <var>

Ul object

Ul object represents the HTML <ul> element.

Access Ul object

You can use getElementById() to access the <ul> element:

var x = document.getElementById("myUL");

try it yourself

Create Ul object

You can use the document.createElement() method to create a <ul> element:

var x = document.createElement("UL");

try it yourself

Ul object property

বৈশিষ্ট্য description
compact

HTML5-এ সমর্থিত নয়।অনুমোদিত করুন style.lineHeight

set or return whether the unordered list should be presented smaller than normal.

type

HTML5-এ সমর্থিত নয়।অনুমোদিত করুন style.listStyleType

বিনম্র তালিকার type বৈশিষ্ট্য সেট করা অথবা ফিরিয়ে দেওয়া হয়。

স্ট্যান্ডার্ড বৈশিষ্ট্য ও ঘটনা

Ul অবজেক্ট স্ট্যান্ডার্ডকে সমর্থন করেবৈশিষ্ট্যএবংঘটনা

সংশ্লিষ্ট পৃষ্ঠা

HTML শিক্ষা:HTML তালিকা

HTML সংক্ষিপ্ত পঞ্জির:HTML <ul> ট্যাগ

  • পূর্ববর্তী পৃষ্ঠা <u>
  • পরবর্তী পৃষ্ঠা <var>