Style borderBottomWidth Property
- পূর্ববর্তী পৃষ্ঠা borderBottomStyle
- পরবর্তী পৃষ্ঠা borderCollapse
- একত্রীকরণ করুন HTML DOM Style অবজেক্ট
Definition and Usage
borderBottomWidth
Set or return the width of the bottom border of the element.
See also:
CSS Tutorial:CSS বর্তন
CSS Reference Manual:border-bottom-width property
HTML DOM Reference Manual:border property
Example
Example 1
Change the width of the bottom border of the <div> element to 10px:
document.getElementById("myDiv").style.borderBottomWidth = "10px";
Example 2
Change the width of the bottom border of the <div> element to thin:
document.getElementById("myDiv").style.borderBottomWidth = "thin";
Example 3
Return the width of the bottom border of the <div> element:
alert(document.getElementById("myDiv").style.borderBottomWidth);
Syntax
return borderBottomWidth property:
object.style.borderBottomWidth
set borderBottomWidth property:
object.style.borderBottomWidth = "thin|medium|thick|length|initial|inherit"
প্রতিভূতি মান
মান | বর্ণনা |
---|---|
thin | সূক্ষ্ম হুক নির্দেশ করুন。 |
medium | মাঝবর্তী হুক নির্দেশ করুন। ডিফল্ট。 |
thick | বড় হুক নির্দেশ করুন。 |
length | প্রশস্ততা দৈর্ঘ্যের মাধ্যমে হুক প্রশস্ততা。 |
initial | এই বৈশিষ্ট্যকে তার ডিফল্ট মানে নিন। দেখুন initial。 |
inherit | এই বৈশিষ্ট্যকে পিতৃ এলিমেন্ট থেকে উত্তরণ করুন। দেখুন inherit。 |
প্রযুক্তিগত বিবরণ
ডিফল্ট মান: | medium |
---|---|
ফলাফল: | শব্দমালা যা এলিমেন্টের নিচের হুক প্রশস্ততা নির্দেশ করে。 |
CSS সংস্করণ: | CSS1 |
ব্রাউজার সমর্থন
তালিকায় সম্পূর্ণরূপে এই বৈশিষ্ট্যকে সমর্থন করা প্রথম ব্রাউজারের সংস্করণ নম্বর উল্লেখ করা হয়েছে。
Chrome | Edge | Firefox | Safari | ওপেরা |
---|---|---|---|---|
Chrome | Edge | Firefox | Safari | ওপেরা |
1.0 | 4.0 | 1.0 | 1.0 | 3.5 |
- পূর্ববর্তী পৃষ্ঠা borderBottomStyle
- পরবর্তী পৃষ্ঠা borderCollapse
- একত্রীকরণ করুন HTML DOM Style অবজেক্ট