
ادامه مطلب +
دوربین مدار بسته
تیم حفاظتی و امنیتی الکام اولین طراح، مشاور و مجری پروژه سیستم های حفاظتی بی سیم و هوشمند در استان البرز...

ادامه مطلب +
طراحی سایت
طراحی، سئو و بهینه سازی وب سایت و ارائه هاست قدرتمند لینوکس و ویندوز، و هم چنین تبلیغات در گوگل از جمله وظایف تیم طراحی سایت الکام می باشد ...

ادامه مطلب +
اینترنت وایرلس
ارائه پهنای باند اختصاصی به شرکت ها و کارخانجات و هم چنین اینترنت بی سیم به منازل از سال 83، شرکت الکام را بر این داشته که با گسترش سیستم های مخابراتی و وایرلسی قدم مثبت در راه پویایی این سیستم بر دارد...

سیستم های حفاظتی و امنیتی
- سیستم اعلان واطفا حریق
- دزدگیر اماکن و فروشگاهی
- درب اتوماتیک
- مدیریت هوشمند ساختمان(BMS)
- و ...

طراحی وبهینه سازی وب سایت
- طراحی و بهنه سازی سایت
- ارائه هاست قدرتمند ویندوز و لینوکس
- بهینه سازی برای موتورهای جستجو
- بازاریابی موتورهای جستجو
- تبلیغات اینترنتی
- آنالیز وب سایتها
- فروشگاه اینترنتی
- و...

اینترنت پرسرعت وایرلس
- ارائه پهنای باند اختصاصی به شرکت ها
- اشتراک اینترنت نامحدود به منازل
- اجرای پروژه های اکتیو و پسیو شبکه
- اجرای پروژه های مخابراتی
- ارائه سرور vps,vds
- انتقال تصویر از طریق اینترنت و شبکهLAN
- و..
-
طراحی سایت شرکت تولیدی ورزشی المپیک اسپرت
100% انجام شده -
پروژه راه اندازی اینترنت وایرلس در شهرک صنعتی صفادشت
در دست اجرا 100% تکمیل -
پروژه بی سیم سیستم های حفاظتی مسکن مهر یوسف آباد
انجام شده -
طراحی سایت فروشگاهی مدلیست
55% انجام شده -
طراحی سایت خبری
در دست طراحی
نیوز IT برق -
سایت شرکت بسپار سازه کامپوزیت
75% انجام شده -
سایت شرکت دنیز پلاستیک
50% انجام شده
فروشگاه الکام
تیم مهندسین الکام در نظر دارد سهم قابل توجهی از بازار الکترونیک، تجارت الکترونیک وفناوری اطلاعات وارتباطات را به خود اختصاص دهد، که دراین راستا امکان خرید محصولات به صورت آنلاین را فراهم می کند.
پشتیبانی 24 ساعته الکام

پشتیبانی آنلاین
viber,telegram,line 09307077489

دانلود مقالات مفید
برق
فناوری اطلاعات

دپارتمان آموزش
آموزش برق
شبکه و کامپیوتر

دانلود
نرم افزار و سخت افزار
فایل آموزشی
دفترچه راهنما

سامانه SMS
3000250272
Grid positions/Structure
- دسته: site design
- منتشر شده در جمعه, 02 فروردين 1392 13:47
- نوشته شده توسط الکام
- بازدید: 5791
You can see more details on http://twitter.github.com/bootstrap/scaffolding.html#gridSystem
Live grid example
The default Bootstrap grid system utilizes 12 columns, making for a 940px wide container without responsive features enabled. With the responsive CSS file added, the grid adapts to be 724px and 1170px wide depending on your viewport. Below 767px viewports, the columns become fluid and stack vertically.
Basic grid HTML
For a simple two column layout, create a .row
and add the appropriate number of .span*
columns. As this is a 12-column grid, each .span*
spans a number of those 12 columns, and should always add up to 12 for each row (or the number of columns in the parent).
<div class="row"> <div class="span4">...</div> <div class="span8">...</div> </div>
Given this example, we have .span4
and .span8
, making for 12 total columns and a complete row.
SHORCODE DEMOS
The shortcode is quite simple Attach the cols number near grid. Keep in mind you must use the row shortcode.
[grid 1/2/3/4/5/6/7/8/9/10/11/12]...[/grid]
[row]
[grid 2]
...
[/grid]
[grid 10]
...
[/grid]
[row]
You can also use the grid shortcodes like this:
[grid3 first/last]...[/grid3]
[grid2 first]
...
[/grid2]
[grid10 last]
...
[/grid10]
Other examples:
[onethird first/last]...[/onethird]
[twothirds first/last]...[/twothirds]
[half first/last]...[/half]
Offsetting columns
Move columns to the right using .offset*
classes. Each class increases the left margin of a column by a whole column. For example, .offset4
moves .span4
over four columns.
<div class="row"> <div class="span4">...</div> <div class="span3 offset2">...</div> </div>
Nesting columns
To nest your content with the default grid, add a new .row
and set of .span*
columns within an existing .span*
column. Nested rows should include a set of columns that add up to the number of columns of its parent.
<div class="row"> <div class="span9"> Level 1 column <div class="row"> <div class="span6">Level 2</div> <div class="span3">Level 2</div> </div> </div> </div>
Fluid grid system
Live fluid grid example
The fluid grid system uses percents instead of pixels for column widths. It has the same responsive capabilities as our fixed grid system, ensuring proper proportions for key screen resolutions and devices.
Basic fluid grid HTML
Make any row "fluid" by changing .row
to .row-fluid
. The column classes stay the exact same, making it easy to flip between fixed and fluid grids.
<div class="row-fluid"> <div class="span4">...</div> <div class="span8">...</div> </div>
Fluid offsetting
Operates the same way as the fixed grid system offsetting: add .offset*
to any column to offset by that many columns.
<div class="row-fluid"> <div class="span4">...</div> <div class="span4 offset2">...</div> </div>
Fluid nesting
Nesting with fluid grids is a bit different: the number of nested columns should not match the parent's number of columns. Instead, each level of nested columns are reset because each row takes up 100% of the parent column.
<div class="row-fluid"> <div class="span12"> Fluid 12 <div class="row-fluid"> <div class="span6">Fluid 6</div> <div class="span6">Fluid 6</div> </div> </div> </div>