150150 ]
151151 }
152152 ]
153- }
153+ }
154+ =======
155+ "id" : " css" ,
156+ "title" : " সিএসএস" ,
157+ "slug" : " css" ,
158+ "description" : " সিএসএস এর মাধ্যমে ওয়েব পেইজের লেআউট ডিজাইন ও ওয়েব ব্রাউজারে ডকুমেন্ট কিভাবে প্রদর্শন হবে তা নির্ধারন করা হয়।" ,
159+ "colorPref" : " #264DE4" ,
160+ "contents" : [
161+ {
162+ "title" : " ব্যাসিক ধারণা" ,
163+ "items" : [
164+ {
165+ "definition" : " সিনট্যাক্স সিলেক্টর" ,
166+ "code" : " selector{ property: value;}"
167+ },
168+ {
169+ "definition" : " External CSS ফাইল যুক্ত করুতে" ,
170+ "code" : " <link rel='stylesheet' href='style.css'>"
171+ },
172+ {
173+ "definition" : " Internal CSS ফাইল যুক্ত করুতে" ,
174+ "code" : " <style> body {background: blue;}</style>"
175+ },
176+ {
177+ "definition" : " Inline CSS লিখতে" ,
178+ "code" : " <h1 style='color:blue;'>A Blue Heading</h1>"
179+ },
180+ {
181+ "definition" : " সকল ইলিমেন্ট সিলেক্ট করতে" ,
182+ "code" : " * {property: value;}"
183+ },
184+ {
185+ "definition" : " সকল আইডি সিলেক্ট করতে" ,
186+ "code" : " #id {property: value;}"
187+ },
188+ {
189+ "definition" : " সকল ক্লাস সিলেক্ট করতে" ,
190+ "code" : " .class {property: value;}"
191+ }
192+ ]
193+ },
194+ {
195+ "title" : " ব্যাকগ্রাউন্ড" ,
196+ "items" : [
197+ {
198+ "definition" : " ব্যাকগ্রাউন্ড প্রপার্টিস" ,
199+ "code" : " background | background-color | background-image | background-position | background-size | background-attachment | background-repeat | background-clip | background-origin"
200+ },
201+ {
202+ "definition" : " ব্যাকগ্রাউন্ড কালার ভ্যালু" ,
203+ "code" : " Color Code - #fffff, #000000 | transparent | Color Name - White, Red, etc"
204+ },
205+ {
206+ "definition" : " ব্যাকগ্রাউন্ড ইমেজ ভ্যালু" ,
207+ "code" : " url | gradient | none"
208+ },
209+ {
210+ "definition" : " ব্যাকগ্রাউন্ড পজিশন" ,
211+ "code" : " top | left | center | bottom | right | top center | top left | top right | bottom left | bottom right | bottom center | center left | center center | center right"
212+ },
213+ {
214+ "definition" : " ব্যাকগ্রাউন্ড সাইজ" ,
215+ "code" : " auto | length | percentage | cover | contain | initial | inherit"
216+ },
217+ {
218+ "definition" : " ব্যাকগ্রাউন্ড এটাচমেন্ট" ,
219+ "code" : " scroll | fixed | local | initial | inherit "
220+ },
221+ {
222+ "definition" : " ব্যাকগ্রাউন্ড রিপিট ভ্যালু" ,
223+ "code" : " repeat | repeat-x | repeat-y | no-repeat | space | round | initial | inherit"
224+ },
225+ {
226+ "definition" : " ব্যাকগ্রাউন্ড ক্লিপ ভ্যালু - ব্যবহার কালার ও ইমেজ" ,
227+ "code" : " border-box | padding-box | content-box | initial | inherit"
228+ },
229+ {
230+ "definition" : " ব্যাকগ্রাউন্ড অরিজিন ভ্যালু - ব্যবহার ব্যাকগ্রাউন্ড ইমেজ" ,
231+ "code" : " padding-box | border-box | content-box | initial | inherit "
232+ }
233+ ]
234+ },
235+ {
236+ "title" : " ফন্ট বা টাইপোগ্রাফি" ,
237+ "items" : [
238+ {
239+ "definition" : " ফন্ট প্রপার্টি" ,
240+ "code" : " font-style | font-variant | font-weight | font-size | line-height | font-family | font-stretch"
241+ },
242+ {
243+ "definition" : " ফন্ট স্টাইল ভ্যালু" ,
244+ "code" : " normal | italic | oblique | initial | inherit"
245+ },
246+ {
247+ "definition" : " ফন্ট ভ্যারিয়ান্ট ভ্যালু" ,
248+ "code" : " normal | small-caps | initial | inherit"
249+ },
250+ {
251+ "definition" : " ফন্ট ওয়েট ভ্যালু" ,
252+ "code" : " normal | bold | bolder | lighter | 100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900 | initial | inherit"
253+ },
254+ {
255+ "definition" : " ফন্ট সাইজ ভ্যালু" ,
256+ "code" : " medium | xx-small | x-small | small | large | x-large | xx-large | smaller | larger | length | initial | inherit | percentage"
257+ },
258+ {
259+ "definition" : " লাইন হাইট ভ্যালু" ,
260+ "code" : " normal | number | length | initial | inherit"
261+ },
262+ {
263+ "definition" : " ফন্ট ফ্যামিলি" ,
264+ "code" : " font-family: Arial, Helvetica, sans-serif;"
265+ },
266+ {
267+ "definition" : " ফন্ট স্ট্রেচ" ,
268+ "code" : " ultra-condensed | extra-condensed | condensed | semi-condensed | normal | semi-expanded | expanded | extra-expanded | ultra-expanded | initial | inherit"
269+ }
270+ ]
271+ },
272+ {
273+ "title" : " ট্রানজিশন" ,
274+ "items" : [
275+ {
276+ "definition" : " ট্রানজিশন প্রপার্টি" ,
277+ "code" : " transition | transition-delay | transition-duration | transition-property | transition-timing-function"
278+ },
279+ {
280+ "definition" : " ট্রানজিশন ডিলে ভ্যালু" ,
281+ "code" : " time (1s, 1ms etc) - কত সময় পর ট্রানজিশন ইফেক্ট শুরু হবে।"
282+ },
283+ {
284+ "definition" : " ট্রানজিশন ডিউরেশন ভ্যালু" ,
285+ "code" : " time (2s, 2ms etc) - কত সময় পর্যন্ত ট্রানজিশন ইফেক্ট চলবে।"
286+ },
287+ {
288+ "definition" : " ট্রানজিশন প্রপার্টি ভ্যালু" ,
289+ "code" : " none | all - অল এর মাধ্যমে সকল ট্রানজিশন ইফেক্ট কাজ করবে।"
290+ },
291+ {
292+ "definition" : " ট্রানজিশন-টাইমিং-ফাংশন ভ্যালু" ,
293+ "code" : " linear | ease | ease-in | ease-out | ease-in-out | step-start | step-end | steps(int,start|end) | cubic-bezier(n,n,n,n) | initial | inherit"
294+ }
295+ ]
296+ },
297+ {
298+ "title" : " বক্স মডেল" ,
299+ "items" : [
300+ {
301+ "definition" : " ফ্লোট প্রপার্টি" ,
302+ "code" : " left | right | none"
303+ },
304+ {
305+ "definition" : " হাইট" ,
306+ "code" : " auto | length | %"
307+ },
308+ {
309+ "definition" : " ম্যাক্স-হাইট" ,
310+ "code" : " none | length | %"
311+ },
312+ {
313+ "definition" : " ম্যাক্স-উইডথ" ,
314+ "code" : " none | length | %"
315+ },
316+ {
317+ "definition" : " মিন-হাইট" ,
318+ "code" : " none | length | %"
319+ },
320+ {
321+ "definition" : " মার্জিন" ,
322+ "code" : " margin-top | margin-right | margin-bottom | margin-left"
323+ },
324+ {
325+ "definition" : " মার্জিন-বট্ম" ,
326+ "code" : " auto | length | %"
327+ },
328+ {
329+ "definition" : " মার্জিন-টপ" ,
330+ "code" : " auto | length | %"
331+ },
332+ {
333+ "definition" : " মার্জিন-লেফট" ,
334+ "code" : " auto | height | %"
335+ },
336+ {
337+ "definition" : " মার্জিন-রাইট" ,
338+ "code" : " auto | height | %"
339+ },
340+ {
341+ "definition" : " প্যাডিং" ,
342+ "code" : " padding-top | padding-right | padding-bottom | padding-left"
343+ },
344+ {
345+ "definition" : " প্যাডিং-লেফট" ,
346+ "code" : " length | %"
347+ },
348+ {
349+ "definition" : " প্যাডিং-রাইট" ,
350+ "code" : " length | %"
351+ },
352+ {
353+ "definition" : " প্যাডিং-বট্ম" ,
354+ "code" : " length | %"
355+ },
356+ {
357+ "definition" : " প্যাডিং-টপ" ,
358+ "code" : " length | %"
359+ },
360+ {
361+ "definition" : " ডিসপ্লে" ,
362+ "code" : " none | inline | block | inline-block | flex | inline-flex | grid | inline-grid | contents | list-item |run-in | compact | table | inline-table | table-row-group | table-header-group | table-footer-group | table-row | table-column-group | table-column | table-cell | table-caption | ruby | ruby-base | ruby-text | ruby-base-group | ruby-text-group "
363+ },
364+ {
365+ "definition" : " ওভারফ্লো" ,
366+ "code" : " visible | hidden | scroll | auto | no-display | no-content overflow-x overflow-y "
367+ },
368+ {
369+ "definition" : " ওভারফ্লো-স্টাইল" ,
370+ "code" : " auto | marquee-line | marqueeblock"
371+ },
372+ {
373+ "definition" : " ওভারফ্লো-এক্স" ,
374+ "code" : " visible | hidden | scroll"
375+ },
376+ {
377+ "definition" : " ভিজিবিলিটি" ,
378+ "code" : " visible | hidden | collapse"
379+ },
380+ {
381+ "definition" : " ক্লিয়ার" ,
382+ "code" : " left | right | both | none"
383+ }
384+ ]
385+ },
386+ {
387+ "title" : " টেবিল" ,
388+ "items" : [
389+ {
390+ "definition" : " বর্ডার-কলাপ্স" ,
391+ "code" : " collapse | separate"
392+ },
393+ {
394+ "definition" : " এম্পটি সেলস" ,
395+ "code" : " show | hide "
396+ },
397+ {
398+ "definition" : " বর্ডার স্পেসিং" ,
399+ "code" : " length | length"
400+ },
401+ {
402+ "definition" : " টেবিল-লেআউট" ,
403+ "code" : " auto | fixed "
404+ },
405+ {
406+ "definition" : " ক্যাপশন-সাইড" ,
407+ "code" : " top | bottom | left | right"
408+ }
409+ ]
410+ },
411+ {
412+ "title" : " লিস্ট & মার্কার" ,
413+ "items" : [
414+ {
415+ "definition" : " লিস্ট-স্টাইল" ,
416+ "code" : " list-style-type | list-style-position | list-style-image"
417+ },
418+ {
419+ "definition" : " লিস্ট-স্টাইল-ইমেজ" ,
420+ "code" : " none | url"
421+ },
422+ {
423+ "definition" : " লিস্ট-স্টাইল-টাইপ" ,
424+ "code" : " none | asterisks | box | check | circle | diamond | disc | hyphen | square | decimal | decimalleading-zero | lower-roman | upper-roman | lower-alpha | upper-alpha | lower-greek | lower-latin | upper-latin | hebrew | armenian | georgian | cjk-ideographic | hiragana | katakana | hiragana-iroha | katakana-iroha | footnotes"
425+ },
426+ {
427+ "definition" : " মার্কার-অফসেট" ,
428+ "code" : " auto | length"
429+ }
430+ ]
431+ },
432+ {
433+ "title" : " অ্যানিমেশন" ,
434+ "items" : [
435+ {
436+ "definition" : " অ্যানিমেশন" ,
437+ "code" : " animation-name | animation-duration | animation-timing-function | animation-delay | animation-iteration-count | animation-direction"
438+ },
439+ {
440+ "definition" : " অ্যানিমেশন-নেইম" ,
441+ "code" : " none | IDENT "
442+ },
443+ {
444+ "definition" : " অ্যানিমেশন-ডিউরেশন" ,
445+ "code" : " time"
446+ },
447+ {
448+ "definition" : " অ্যানিমেশন-টাইম-ফাংশন" ,
449+ "code" : " ease | linear | ease-in | easeout | ease-in-out | cubic-Bezier (number, number, number, number) "
450+ },
451+ {
452+ "definition" : " অ্যানিমেশন-ডিলেই" ,
453+ "code" : " time"
454+ },
455+ {
456+ "definition" : " অ্যানিমেশন-ইটারেশন-কাউন্ট" ,
457+ "code" : " inherit | number"
458+ },
459+ {
460+ "definition" : " অ্যানিমেশন-ডাইরেকশন" ,
461+ "code" : " normal | alternative"
462+ },
463+ {
464+ "definition" : " অ্যানিমেশন-প্লে-স্টেট" ,
465+ "code" : " runing | paused"
466+ },
467+ {
468+ "definition" : " রোটেশন" ,
469+ "code" : " angle | rotation-point | position (paired value off-set)"
470+ }
471+ ]
472+ }
473+ ]
474+ }
0 commit comments